Add an extra line between multiple passages.

This commit is contained in:
Jonathan Bernard 2023-06-04 08:20:59 -05:00
parent 98d66b564f
commit 8c9c5d8f81
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Package # Package
version = "0.2.0" version = "0.2.1"
author = "Jonathan Bernard" author = "Jonathan Bernard"
description = "Simple Nim CLI wrapper around the ESV API (api.esv.org)" description = "Simple Nim CLI wrapper around the ESV API (api.esv.org)"
license = "MIT" license = "MIT"

View File

@ -44,7 +44,7 @@ Options:
try: try:
# Parse arguments # Parse arguments
let args = docopt(USAGE, version = "0.2.0") let args = docopt(USAGE, version = "0.2.1")
if args["--debug"]: if args["--debug"]:
consoleLogger.levelThreshold = lvlDebug consoleLogger.levelThreshold = lvlDebug
@ -78,7 +78,7 @@ Options:
else: else:
respJson["passages"].getElems --> map(formatMarkdown(it.getStr)) respJson["passages"].getElems --> map(formatMarkdown(it.getStr))
echo formattedPassages.join("\p") echo formattedPassages.join("\p\p")
except CatchableError: except CatchableError:
fatal getCurrentExceptionMsg() fatal getCurrentExceptionMsg()