f383661e5e
By default, when using markdown files, Cryogen will look for `resources/templates/md/pages/*.md`. This commits allows Cryogen to fall back to `resources/templates/pages/*.md` in the case that it can't find any files in the former directory. It works similarly for posts and Asciidoc files. Since we're looking specifically for `*.md` for Markdown files and `*.asc` for Ascii files, this is an opportunity to eliminate redundancy.
17 lines
888 B
Clojure
17 lines
888 B
Clojure
(defproject cryogen-core "0.1.41"
|
|
:description "Cryogen's compiler"
|
|
:url "https://github.com/cryogen-project/cryogen-core"
|
|
:license {:name "Eclipse Public License"
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
:dependencies [[org.clojure/clojure "1.8.0"]
|
|
[clj-rss "0.2.3"]
|
|
[me.raynes/fs "1.4.6"]
|
|
[crouton "0.1.2"]
|
|
[cheshire "5.6.1"]
|
|
[clj-text-decoration "0.0.3"]
|
|
[io.aviso/pretty "0.1.26"]
|
|
[hiccup "1.0.5"]
|
|
[selmer "1.0.4"]
|
|
[pandect "0.6.0"]
|
|
[hawk "0.2.10"]
|
|
[clj-tagsoup "0.3.0" :exclusions [org.clojure/clojure]]])
|