summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsko Nõmm <asko@bien.ee>2022-04-25 12:13:55 +0300
committerAsko Nõmm <asko@bien.ee>2022-04-25 12:13:55 +0300
commite8226d136d95abb0dec8722bac0f4520fdcac80a (patch)
tree79a1360f7b57745e0fe9cf6d4ffcaa66456788ad
parentdb46256687826dc0dcb8e98f4bc7b541426225c4 (diff)
Update README.md
-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.