We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e8a9acf + d7b2d35 commit 8e5ec89Copy full SHA for 8e5ec89
project.clj
@@ -1,8 +1,8 @@
1
-(defproject cryogen-markdown "0.1.11"
+(defproject cryogen-markdown "0.1.12"
2
:description "Markdown parser for Cryogen"
3
:url "https://github.com/cryogen-project/cryogen-markdown"
4
:license {:name "Eclipse Public License"
5
:url "http://www.eclipse.org/legal/epl-v10.html"}
6
:dependencies [[org.clojure/clojure "1.10.0"]
7
- [cryogen-core "0.1.67"]
+ [cryogen-core "0.3.2"]
8
[markdown-clj "1.10.0"]])
src/cryogen_markdown/core.clj
@@ -17,7 +17,7 @@
17
[]
18
(reify Markup
19
(dir [this] "md")
20
- (ext [this] ".md")
+ (exts [this] #{".md"})
21
(render-fn [this]
22
(fn [rdr config]
23
(md-to-html-string
0 commit comments