Complements on the Vega stuff. Looks really cool!
Can Reveal render hiccup html? Even if very basic.. What is the best way to approach this?
@chromalchemy there is nothing specific for hiccup, but you can use cljfx's web view to render hiccup:
(require '[hiccup.core :as h]
'[cljfx.ext.web-view :as ext.web-view])
#reveal/inspect {:fx/type ext.web-view/with-engine-props
:props {:content (h/html [:ul
(for [x (range 1 4)]
[:li x])])}
:desc {:fx/type :web-view}}note that JavaFX's web view is a fork of webkit, so YMMV