list package:blaze-html

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