cryogen

http://cryogenweb.org/ - static sites by @U0DJK1VH6 & Co.
Jakub Holý 2020-10-29T08:51:32.077700Z

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ý 2020-10-29T09:02:01.078500Z

@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 ... ?

carmen 2020-10-29T14:04:20.078900Z

@holyjak testing is always appreciated 🙏

1👍
Jakub Holý 2020-10-29T20:05:35.081200Z

@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)

seancorfield 2020-10-29T20:21:41.082100Z

@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?

seancorfield 2020-10-29T20:22:34.082500Z

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

1✅
seancorfield 2020-10-29T20:23:57.083Z

Yeah, he has create built into the alias: https://github.com/practicalli/clojure-deps-edn/blob/live/deps.edn#L94-L107

Jakub Holý 2020-10-29T20:24:12.083200Z

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