rum

Simple, decomplected, isomorphic HTML UI library for Clojure and ClojureScript | 0.12.8 https://github.com/tonsky/rum/blob/gh-pages/CHANGELOG.md#0128
sparkofreason 2018-01-30T17:18:36.000398Z

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

rauh 2018-01-30T17:26:00.000553Z

@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

rauh 2018-01-30T17:27:02.000786Z

Though, sablono will probably still wrap this inside a single interpreter call (which will be a no-op).

sparkofreason 2018-01-30T17:28:17.000554Z

@rauh Cool, thanks.