forM package:blaze-html

Combinator for the <form> element. Example:
form $ span $ toHtml "foo"
Result:
<form><span>foo</span></form>
Combinator for the form attribute. Example:
div ! form "bar" $ "Hello."
Result:
<div form="bar">Hello.</div>
Combinator for the formaction attribute. Example:
div ! formaction "bar" $ "Hello."
Result:
<div formaction="bar">Hello.</div>
Combinator for the formenctype attribute. Example:
div ! formenctype "bar" $ "Hello."
Result:
<div formenctype="bar">Hello.</div>
Combinator for the formmethod attribute. Example:
div ! formmethod "bar" $ "Hello."
Result:
<div formmethod="bar">Hello.</div>
Combinator for the formnovalidate attribute. Example:
div ! formnovalidate "bar" $ "Hello."
Result:
<div formnovalidate="bar">Hello.</div>
Combinator for the formtarget attribute. Example:
div ! formtarget "bar" $ "Hello."
Result:
<div formtarget="bar">Hello.</div>
Combinator for the onformchange attribute. Example:
div ! onformchange "bar" $ "Hello."
Result:
<div onformchange="bar">Hello.</div>
Combinator for the onforminput attribute. Example:
div ! onforminput "bar" $ "Hello."
Result:
<div onforminput="bar">Hello.</div>