Fork me on GitHub
#cryogen
<
2020-10-29
>
Jakub Holý (HolyJak)08:10:32

I am adding an asciidoctor feature that enables you to create custom block/inline macros as Clojure functions, with an example - https://github.com/cryogen-project/cryogen-asciidoc/pull/13/files Feedback welcome.

Jakub Holý (HolyJak)09:10:01

@carmen I see there are mutliple outstading PRs in https://github.com/cryogen-project/cryogen-core/pulls Do you need any help getting them through? Testing or ... ?

carmen14:10:20

@holyjak testing is always appreciated 🙏

👍 3
Jakub Holý (HolyJak)20:10:35

@seancorfield Shouldn't clj -X:project/new create :template cryogen :name myblog (using Practicalli's deps.edn and this clj-new) work? It fails with > Unqualified function can't be resolved: cryogen But lein new cryogen myblog works and I believed that clj-new can use lein templates? (My ultimate goal is to add deps.edn to the generated site because it makes it so much easier to work with locally modified core/asciidoc libs)

seancorfield20:10:41

@holyjak No idea what Practicalli's alias does but this works:

(! 632)-> clj -X:new :template cryogen :name holyjak.myblog
Generating fresh 'lein new' Cryogen project.
using my :new alias. I suspect you do not need create in there?

Jakub Holý (HolyJak)20:10:12

Thanks! You were right, I mixed up his and your instructions. Sorry!

seancorfield20:10:34

According to his readme you do not need create: clojure -X:project/new :template app :name practicalli/my-application

3