diff --git a/esv_api.nimble b/esv_api.nimble index 03d2bd1..3ff7435 100644 --- a/esv_api.nimble +++ b/esv_api.nimble @@ -1,6 +1,6 @@ # Package -version = "0.2.0" +version = "0.2.1" author = "Jonathan Bernard" description = "Simple Nim CLI wrapper around the ESV API (api.esv.org)" license = "MIT" diff --git a/src/esv_api.nim b/src/esv_api.nim index a20306c..614b507 100644 --- a/src/esv_api.nim +++ b/src/esv_api.nim @@ -44,7 +44,7 @@ Options: try: # Parse arguments - let args = docopt(USAGE, version = "0.2.0") + let args = docopt(USAGE, version = "0.2.1") if args["--debug"]: consoleLogger.levelThreshold = lvlDebug @@ -78,7 +78,7 @@ Options: else: respJson["passages"].getElems --> map(formatMarkdown(it.getStr)) - echo formattedPassages.join("\p") + echo formattedPassages.join("\p\p") except CatchableError: fatal getCurrentExceptionMsg()