Skip to content

Commit

Permalink
Merge pull request #13 from bombaywalla/multiple-extensions
Browse files Browse the repository at this point in the history
Allow multiple extensions in  Markup.
  • Loading branch information
bombaywalla authored Oct 17, 2020
2 parents e8a9acf + d7b2d35 commit 8e5ec89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(defproject cryogen-markdown "0.1.11"
(defproject cryogen-markdown "0.1.12"
:description "Markdown parser for Cryogen"
:url "https://github.com/cryogen-project/cryogen-markdown"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0"]
[cryogen-core "0.1.67"]
[cryogen-core "0.3.2"]
[markdown-clj "1.10.0"]])
2 changes: 1 addition & 1 deletion src/cryogen_markdown/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[]
(reify Markup
(dir [this] "md")
(ext [this] ".md")
(exts [this] #{".md"})
(render-fn [this]
(fn [rdr config]
(md-to-html-string
Expand Down

0 comments on commit 8e5ec89

Please # to comment.