Works beautifully! Thank you!
Great! Thank you too 🙂
@mogenslund Is there any relatively easy way to get the same integration for leiningen as you now have for clj? I mean having liquid as a dep defined. Installation of clojure on windows is still through leiningen or boot, so I'm missing out on the integration part of liquid into projects.
Hi @bvs Yes. You can set [mogenslund/liquid "1.0.0"] as dependency in project.clj. If you want liquid to start on "lein run" set :main "dk.salza.liq.core" If you have want to customize how liquid is loaded, point :main to your own namespace through which liquid is loaded. See https://github.com/mogenslund/liquid-starter-kit as an example of a customized load. In that case you would have :main "lsk.core".
I have now extended https://github.com/mogenslund/liquid-starter-kit with a Leiningen example. I often configure my projects, so I can start liquid with "lein edit". This leaves "lein run" and "lein repl" for default behavior.
thanks. looks like it works. lein edit is a nice twist. will use that.