Any thoughts on making the hiccup renderer pluggable? I'd like to use hicada, and it's certainly possible, albeit hacky, as described in the linked article. https://medium.com/@rauh/a-new-hiccup-compiler-for-clojurescript-8a7b63dc5128
@dave.dixon If you don't mind the extra work you can also just wrap all your bodies in a (html ...)
macro call. You'll need to use it occasionally anyways since there is no interpreter
Though, sablono will probably still wrap this inside a single interpreter call (which will be a no-op).
@rauh Cool, thanks.