(rum/defc source->html < {:after-render init-editor}
[state source]
(when-let [html (try
(hs/code->html source)
(catch #?(:clj Exception :cljs js/Error) _))]
[:div {:class "paren-soup"}
[:div {:class "content"
:dangerouslySetInnerHTML {:__html html}}]]))