char package:blaze-html

Combinator for the char attribute. Example:
div ! char "bar" $ "Hello."
Result:
<div char="bar">Hello.</div>
Combinator for the charoff attribute. Example:
div ! charoff "bar" $ "Hello."
Result:
<div charoff="bar">Hello.</div>
Combinator for the charset attribute. Example:
div ! charset "bar" $ "Hello."
Result:
<div charset="bar">Hello.</div>
Combinator for the accept-charset attribute. Example:
div ! acceptCharset "bar" $ "Hello."
Result:
<div accept-charset="bar">Hello.</div>