We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c5ffb7 commit be2a744Copy full SHA for be2a744
src/marvdown.nim
@@ -92,14 +92,15 @@ elif isMainModule:
92
stdout.writeLine(md.toJson())
93
94
# Kapsis CLI Application
95
- commands:
96
- html path(`md`), ?filename(`output`),
97
- bool(--optAnchors),
98
- bool(--bench):
99
- ## Write a markdown document to HTML
100
-
101
- json path(`md`):
102
- ## Export the markdown AST as JSON
+ initKapsis do:
+ commands:
+ html path(md), ?filename(output),
+ ?bool("--optAnchors"),
+ ?bool("--bench"):
+ ## Write a markdown document to HTML
+
+ json path(md):
103
+ ## Export the markdown AST as JSON
104
105
else:
106
# Use Marvdown as Nimble library
0 commit comments