summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index cce655c..7f78c7a 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,17 @@ An extensible and modular zero-dependency, pure-Clojure Markdown parser.
## Installation
-[![Clojars Project](https://img.shields.io/clojars/v/com.github.askonomm/clarktown.svg)](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.