diff options
| author | Asko Nõmm <asko@bien.ee> | 2022-04-25 12:13:55 +0300 |
|---|---|---|
| committer | Asko Nõmm <asko@bien.ee> | 2022-04-25 12:13:55 +0300 |
| commit | e8226d136d95abb0dec8722bac0f4520fdcac80a (patch) | |
| tree | 79a1360f7b57745e0fe9cf6d4ffcaa66456788ad | |
| parent | db46256687826dc0dcb8e98f4bc7b541426225c4 (diff) | |
Update README.md
| -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. |
