You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was going to mention @tags_noescape, and m(Hyperscript.NOESCAPE_HTMLSVG_CONTEXT, "div", "<span>hi</span>"), but doesn't your last PR actually solve this for us?
julia>@tags div
julia>div("<span>hi</span>")
<div><span>hi</span></div>
julia>div(HTML("<span>hi</span>"))
<div><span>hi</span></div>
I need to output un-encoded strings that include raw HTML. This is easy enough to implement externally:
Example:
Is there any interest in having this in Hyperscript?
The text was updated successfully, but these errors were encountered: