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.
@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 ... ?
@holyjak testing is always appreciated 🙏
@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)
@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?According to his readme you do not need create
: clojure -X:project/new :template app :name practicalli/my-application
Yeah, he has create
built into the alias: https://github.com/practicalli/clojure-deps-edn/blob/live/deps.edn#L94-L107
Thanks! You were right, I mixed up his and your instructions. Sorry!