diff options
| -rw-r--r-- | README.md | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -6,7 +6,17 @@ An extensible and modular zero-dependency, pure-Clojure Markdown parser. ## Installation -[](https://clojars.org/com.github.askonomm/clarktown) +#### Leiningen/Boot + +``` +[com.github.askonomm/clarktown "1.1.2"] +``` + +#### Clojure CLI/deps.edn + +``` +com.github.askonomm/clarktown {:mvn/version "1.1.2"} +``` ## Basic usage example @@ -126,4 +136,4 @@ vector of maps, each map representing one collection. And so to register you cou (clarktown/render "**Hello, world!**" (conj parsers my-parser)) ``` -And then `my-parser` will run if the matcher returns `true`, and it will run through all the renderer functions you give it, in order from top to bottom.
\ No newline at end of file +And then `my-parser` will run if the matcher returns `true`, and it will run through all the renderer functions you give it, in order from top to bottom. |
