I am using ClojureScript Reagent. Which provides hiccup-like HTML generation.
I have a String with HTML:
(def code "<b>hello world</b>")
When passed to Hiccup it will be escaped and I get no bold text on my page:
[:div code]
How to pass code
to my HTML output so it will be integrated there without being escaped?