Skip to content

Commit 8e5ec89

Browse files
authored
Merge pull request #13 from bombaywalla/multiple-extensions
Allow multiple extensions in Markup.
2 parents e8a9acf + d7b2d35 commit 8e5ec89

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
(defproject cryogen-markdown "0.1.11"
1+
(defproject cryogen-markdown "0.1.12"
22
:description "Markdown parser for Cryogen"
33
:url "https://github.com/cryogen-project/cryogen-markdown"
44
:license {:name "Eclipse Public License"
55
:url "http://www.eclipse.org/legal/epl-v10.html"}
66
:dependencies [[org.clojure/clojure "1.10.0"]
7-
[cryogen-core "0.1.67"]
7+
[cryogen-core "0.3.2"]
88
[markdown-clj "1.10.0"]])

src/cryogen_markdown/core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
[]
1818
(reify Markup
1919
(dir [this] "md")
20-
(ext [this] ".md")
20+
(exts [this] #{".md"})
2121
(render-fn [this]
2222
(fn [rdr config]
2323
(md-to-html-string

0 commit comments

Comments
 (0)