id -package:universum package:blaze-html

Combinator for the id attribute. Example:
div ! id "bar" $ "Hello."
Result:
<div id="bar">Hello.</div>
Combinator for the classid attribute. Example:
div ! classid "bar" $ "Hello."
Result:
<div classid="bar">Hello.</div>
Combinator for the width attribute. Example:
div ! width "bar" $ "Hello."
Result:
<div width="bar">Hello.</div>
Combinator for the <aside> element. Example:
aside $ span $ toHtml "foo"
Result:
<aside><span>foo</span></aside>
Combinator for the <video> element. Example:
video $ span $ toHtml "foo"
Result:
<video><span>foo</span></video>
Combinator for the formnovalidate attribute. Example:
div ! formnovalidate "bar" $ "Hello."
Result:
<div formnovalidate="bar">Hello.</div>
Combinator for the hidden attribute. Example:
div ! hidden "bar" $ "Hello."
Result:
<div hidden="bar">Hello.</div>
Combinator for the novalidate attribute. Example:
div ! novalidate "bar" $ "Hello."
Result:
<div novalidate="bar">Hello.</div>
Combinator for the oninvalid attribute. Example:
div ! oninvalid "bar" $ "Hello."
Result:
<div oninvalid="bar">Hello.</div>
Combinator for the onpagehide attribute. Example:
div ! onpagehide "bar" $ "Hello."
Result:
<div onpagehide="bar">Hello.</div>