a package:blaze-html

Combinator for the <a> element. Example:
a $ span $ toHtml "foo"
Result:
<a><span>foo</span></a>
Combinator for the <abbr> element. Example:
abbr $ span $ toHtml "foo"
Result:
<abbr><span>foo</span></abbr>
Combinator for the <acronym> element. Example:
acronym $ span $ toHtml "foo"
Result:
<acronym><span>foo</span></acronym>
Combinator for the <address> element. Example:
address $ span $ toHtml "foo"
Result:
<address><span>foo</span></address>
Combinator for the <applet> element. Example:
applet $ span $ toHtml "foo"
Result:
<applet><span>foo</span></applet>
Combinator for the <area /> element. Example:
area
Result:
<area />
Combinator for the abbr attribute. Example:
div ! abbr "bar" $ "Hello."
Result:
<div abbr="bar">Hello.</div>
Combinator for the accept attribute. Example:
div ! accept "bar" $ "Hello."
Result:
<div accept="bar">Hello.</div>
Combinator for the accesskey attribute. Example:
div ! accesskey "bar" $ "Hello."
Result:
<div accesskey="bar">Hello.</div>
Combinator for the action attribute. Example:
div ! action "bar" $ "Hello."
Result:
<div action="bar">Hello.</div>
Combinator for the align attribute. Example:
div ! align "bar" $ "Hello."
Result:
<div align="bar">Hello.</div>
Combinator for the alt attribute. Example:
div ! alt "bar" $ "Hello."
Result:
<div alt="bar">Hello.</div>
Combinator for the archive attribute. Example:
div ! archive "bar" $ "Hello."
Result:
<div archive="bar">Hello.</div>
Combinator for the axis attribute. Example:
div ! axis "bar" $ "Hello."
Result:
<div axis="bar">Hello.</div>
Combinator for the <article> element. Example:
article $ span $ toHtml "foo"
Result:
<article><span>foo</span></article>
Combinator for the <aside> element. Example:
aside $ span $ toHtml "foo"
Result:
<aside><span>foo</span></aside>
Combinator for the <audio> element. Example:
audio $ span $ toHtml "foo"
Result:
<audio><span>foo</span></audio>
Combinator for the accept-charset attribute. Example:
div ! acceptCharset "bar" $ "Hello."
Result:
<div accept-charset="bar">Hello.</div>
Combinator for the async attribute. Example:
div ! async "bar" $ "Hello."
Result:
<div async="bar">Hello.</div>
Combinator for the autocomplete attribute. Example:
div ! autocomplete "bar" $ "Hello."
Result:
<div autocomplete="bar">Hello.</div>
Combinator for the autofocus attribute. Example:
div ! autofocus "bar" $ "Hello."
Result:
<div autofocus="bar">Hello.</div>
Combinator for the autoplay attribute. Example:
div ! autoplay "bar" $ "Hello."
Result:
<div autoplay="bar">Hello.</div>
This module exports combinators that provide you with the ability to set attributes on HTML elements.
This module exports combinators that provide you with the ability to set attributes on HTML elements.
This module exports combinators that provide you with the ability to set attributes on HTML elements.