Text package:blaze-html

Combinator for the <textarea> element. Example:
textarea $ span $ toHtml "foo"
Result:
<textarea><span>foo</span></textarea>
Combinator for the contextmenu attribute. Example:
div ! contextmenu "bar" $ "Hello."
Result:
<div contextmenu="bar">Hello.</div>
Combinator for the oncontextmenu attribute. Example:
div ! oncontextmenu "bar" $ "Hello."
Result:
<div oncontextmenu="bar">Hello.</div>