q package:blaze-html

Combinator for the <q> element. Example:
q $ span $ toHtml "foo"
Result:
<q><span>foo</span></q>
Combinator for the <blockquote> element. Example:
blockquote $ span $ toHtml "foo"
Result:
<blockquote><span>foo</span></blockquote>
Combinator for the http-equiv attribute. Example:
div ! httpEquiv "bar" $ "Hello."
Result:
<div http-equiv="bar">Hello.</div>
Combinator for the required attribute. Example:
div ! required "bar" $ "Hello."
Result:
<div required="bar">Hello.</div>