span package:blaze-html

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