blaze-html-0.1.1: A blazingly fast HTML combinator library.

Text.Blaze.Html5.Attributes

Description

This module exports combinators that provide you with the ability to set attributes on HTML elements.

Synopsis

Documentation

acceptSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the accept attribute.

Example:

 div <! accept "bar" $ "Hello."

Result:

 <div accept="bar">Hello.</div>

accept_charsetSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the accept-charset attribute.

Example:

 div <! accept_charset "bar" $ "Hello."

Result:

 <div accept-charset="bar">Hello.</div>

accesskeySource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the accesskey attribute.

Example:

 div <! accesskey "bar" $ "Hello."

Result:

 <div accesskey="bar">Hello.</div>

actionSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the action attribute.

Example:

 div <! action "bar" $ "Hello."

Result:

 <div action="bar">Hello.</div>

altSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the alt attribute.

Example:

 div <! alt "bar" $ "Hello."

Result:

 <div alt="bar">Hello.</div>

asyncSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the async attribute.

Example:

 div <! async "bar" $ "Hello."

Result:

 <div async="bar">Hello.</div>

autocompleteSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the autocomplete attribute.

Example:

 div <! autocomplete "bar" $ "Hello."

Result:

 <div autocomplete="bar">Hello.</div>

autofocusSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the autofocus attribute.

Example:

 div <! autofocus "bar" $ "Hello."

Result:

 <div autofocus="bar">Hello.</div>

autoplaySource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the autoplay attribute.

Example:

 div <! autoplay "bar" $ "Hello."

Result:

 <div autoplay="bar">Hello.</div>

challengeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the challenge attribute.

Example:

 div <! challenge "bar" $ "Hello."

Result:

 <div challenge="bar">Hello.</div>

charsetSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the charset attribute.

Example:

 div <! charset "bar" $ "Hello."

Result:

 <div charset="bar">Hello.</div>

checkedSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the checked attribute.

Example:

 div <! checked "bar" $ "Hello."

Result:

 <div checked="bar">Hello.</div>

citeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the cite attribute.

Example:

 div <! cite "bar" $ "Hello."

Result:

 <div cite="bar">Hello.</div>

class_Source

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the class attribute.

Example:

 div <! class_ "bar" $ "Hello."

Result:

 <div class="bar">Hello.</div>

colsSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the cols attribute.

Example:

 div <! cols "bar" $ "Hello."

Result:

 <div cols="bar">Hello.</div>

colspanSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the colspan attribute.

Example:

 div <! colspan "bar" $ "Hello."

Result:

 <div colspan="bar">Hello.</div>

contentSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the content attribute.

Example:

 div <! content "bar" $ "Hello."

Result:

 <div content="bar">Hello.</div>

contenteditableSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the contenteditable attribute.

Example:

 div <! contenteditable "bar" $ "Hello."

Result:

 <div contenteditable="bar">Hello.</div>

contextmenuSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the contextmenu attribute.

Example:

 div <! contextmenu "bar" $ "Hello."

Result:

 <div contextmenu="bar">Hello.</div>

controlsSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the controls attribute.

Example:

 div <! controls "bar" $ "Hello."

Result:

 <div controls="bar">Hello.</div>

coordsSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the coords attribute.

Example:

 div <! coords "bar" $ "Hello."

Result:

 <div coords="bar">Hello.</div>

data_Source

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the data attribute.

Example:

 div <! data_ "bar" $ "Hello."

Result:

 <div data="bar">Hello.</div>

datetimeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the datetime attribute.

Example:

 div <! datetime "bar" $ "Hello."

Result:

 <div datetime="bar">Hello.</div>

deferSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the defer attribute.

Example:

 div <! defer "bar" $ "Hello."

Result:

 <div defer="bar">Hello.</div>

dirSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the dir attribute.

Example:

 div <! dir "bar" $ "Hello."

Result:

 <div dir="bar">Hello.</div>

disabledSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the disabled attribute.

Example:

 div <! disabled "bar" $ "Hello."

Result:

 <div disabled="bar">Hello.</div>

draggableSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the draggable attribute.

Example:

 div <! draggable "bar" $ "Hello."

Result:

 <div draggable="bar">Hello.</div>

enctypeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the enctype attribute.

Example:

 div <! enctype "bar" $ "Hello."

Result:

 <div enctype="bar">Hello.</div>

forSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the for attribute.

Example:

 div <! for "bar" $ "Hello."

Result:

 <div for="bar">Hello.</div>

formSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the form attribute.

Example:

 div <! form "bar" $ "Hello."

Result:

 <div form="bar">Hello.</div>

formactionSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the formaction attribute.

Example:

 div <! formaction "bar" $ "Hello."

Result:

 <div formaction="bar">Hello.</div>

formenctypeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the formenctype attribute.

Example:

 div <! formenctype "bar" $ "Hello."

Result:

 <div formenctype="bar">Hello.</div>

formmethodSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the formmethod attribute.

Example:

 div <! formmethod "bar" $ "Hello."

Result:

 <div formmethod="bar">Hello.</div>

formnovalidateSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the formnovalidate attribute.

Example:

 div <! formnovalidate "bar" $ "Hello."

Result:

 <div formnovalidate="bar">Hello.</div>

formtargetSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the formtarget attribute.

Example:

 div <! formtarget "bar" $ "Hello."

Result:

 <div formtarget="bar">Hello.</div>

headersSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the headers attribute.

Example:

 div <! headers "bar" $ "Hello."

Result:

 <div headers="bar">Hello.</div>

heightSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the height attribute.

Example:

 div <! height "bar" $ "Hello."

Result:

 <div height="bar">Hello.</div>

hiddenSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the hidden attribute.

Example:

 div <! hidden "bar" $ "Hello."

Result:

 <div hidden="bar">Hello.</div>

highSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the high attribute.

Example:

 div <! high "bar" $ "Hello."

Result:

 <div high="bar">Hello.</div>

hrefSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the href attribute.

Example:

 div <! href "bar" $ "Hello."

Result:

 <div href="bar">Hello.</div>

hreflangSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the hreflang attribute.

Example:

 div <! hreflang "bar" $ "Hello."

Result:

 <div hreflang="bar">Hello.</div>

http_equivSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the http-equiv attribute.

Example:

 div <! http_equiv "bar" $ "Hello."

Result:

 <div http-equiv="bar">Hello.</div>

iconSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the icon attribute.

Example:

 div <! icon "bar" $ "Hello."

Result:

 <div icon="bar">Hello.</div>

idSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the id attribute.

Example:

 div <! id "bar" $ "Hello."

Result:

 <div id="bar">Hello.</div>

ismapSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the ismap attribute.

Example:

 div <! ismap "bar" $ "Hello."

Result:

 <div ismap="bar">Hello.</div>

itemSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the item attribute.

Example:

 div <! item "bar" $ "Hello."

Result:

 <div item="bar">Hello.</div>

itempropSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the itemprop attribute.

Example:

 div <! itemprop "bar" $ "Hello."

Result:

 <div itemprop="bar">Hello.</div>

keytypeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the keytype attribute.

Example:

 div <! keytype "bar" $ "Hello."

Result:

 <div keytype="bar">Hello.</div>

labelSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the label attribute.

Example:

 div <! label "bar" $ "Hello."

Result:

 <div label="bar">Hello.</div>

langSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the lang attribute.

Example:

 div <! lang "bar" $ "Hello."

Result:

 <div lang="bar">Hello.</div>

listSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the list attribute.

Example:

 div <! list "bar" $ "Hello."

Result:

 <div list="bar">Hello.</div>

loopSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the loop attribute.

Example:

 div <! loop "bar" $ "Hello."

Result:

 <div loop="bar">Hello.</div>

lowSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the low attribute.

Example:

 div <! low "bar" $ "Hello."

Result:

 <div low="bar">Hello.</div>

manifestSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the manifest attribute.

Example:

 div <! manifest "bar" $ "Hello."

Result:

 <div manifest="bar">Hello.</div>

maxSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the max attribute.

Example:

 div <! max "bar" $ "Hello."

Result:

 <div max="bar">Hello.</div>

maxlengthSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the maxlength attribute.

Example:

 div <! maxlength "bar" $ "Hello."

Result:

 <div maxlength="bar">Hello.</div>

mediaSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the media attribute.

Example:

 div <! media "bar" $ "Hello."

Result:

 <div media="bar">Hello.</div>

methodSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the method attribute.

Example:

 div <! method "bar" $ "Hello."

Result:

 <div method="bar">Hello.</div>

minSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the min attribute.

Example:

 div <! min "bar" $ "Hello."

Result:

 <div min="bar">Hello.</div>

multipleSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the multiple attribute.

Example:

 div <! multiple "bar" $ "Hello."

Result:

 <div multiple="bar">Hello.</div>

nameSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the name attribute.

Example:

 div <! name "bar" $ "Hello."

Result:

 <div name="bar">Hello.</div>

novalidateSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the novalidate attribute.

Example:

 div <! novalidate "bar" $ "Hello."

Result:

 <div novalidate="bar">Hello.</div>

onafterprintSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onafterprint attribute.

Example:

 div <! onafterprint "bar" $ "Hello."

Result:

 <div onafterprint="bar">Hello.</div>

onbeforeonloadSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onbeforeonload attribute.

Example:

 div <! onbeforeonload "bar" $ "Hello."

Result:

 <div onbeforeonload="bar">Hello.</div>

onbeforeprintSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onbeforeprint attribute.

Example:

 div <! onbeforeprint "bar" $ "Hello."

Result:

 <div onbeforeprint="bar">Hello.</div>

onblurSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onblur attribute.

Example:

 div <! onblur "bar" $ "Hello."

Result:

 <div onblur="bar">Hello.</div>

onerrorSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onerror attribute.

Example:

 div <! onerror "bar" $ "Hello."

Result:

 <div onerror="bar">Hello.</div>

onfocusSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onfocus attribute.

Example:

 div <! onfocus "bar" $ "Hello."

Result:

 <div onfocus="bar">Hello.</div>

onhaschangeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onhaschange attribute.

Example:

 div <! onhaschange "bar" $ "Hello."

Result:

 <div onhaschange="bar">Hello.</div>

onloadSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onload attribute.

Example:

 div <! onload "bar" $ "Hello."

Result:

 <div onload="bar">Hello.</div>

onmessageSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onmessage attribute.

Example:

 div <! onmessage "bar" $ "Hello."

Result:

 <div onmessage="bar">Hello.</div>

onofflineSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onoffline attribute.

Example:

 div <! onoffline "bar" $ "Hello."

Result:

 <div onoffline="bar">Hello.</div>

ononlineSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the ononline attribute.

Example:

 div <! ononline "bar" $ "Hello."

Result:

 <div ononline="bar">Hello.</div>

onpagehideSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onpagehide attribute.

Example:

 div <! onpagehide "bar" $ "Hello."

Result:

 <div onpagehide="bar">Hello.</div>

onpageshowSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onpageshow attribute.

Example:

 div <! onpageshow "bar" $ "Hello."

Result:

 <div onpageshow="bar">Hello.</div>

onpropstateSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onpropstate attribute.

Example:

 div <! onpropstate "bar" $ "Hello."

Result:

 <div onpropstate="bar">Hello.</div>

onredoSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onredo attribute.

Example:

 div <! onredo "bar" $ "Hello."

Result:

 <div onredo="bar">Hello.</div>

onresizeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onresize attribute.

Example:

 div <! onresize "bar" $ "Hello."

Result:

 <div onresize="bar">Hello.</div>

onstorageSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onstorage attribute.

Example:

 div <! onstorage "bar" $ "Hello."

Result:

 <div onstorage="bar">Hello.</div>

onundoSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onundo attribute.

Example:

 div <! onundo "bar" $ "Hello."

Result:

 <div onundo="bar">Hello.</div>

onunloadSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the onunload attribute.

Example:

 div <! onunload "bar" $ "Hello."

Result:

 <div onunload="bar">Hello.</div>

openSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the open attribute.

Example:

 div <! open "bar" $ "Hello."

Result:

 <div open="bar">Hello.</div>

optimumSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the optimum attribute.

Example:

 div <! optimum "bar" $ "Hello."

Result:

 <div optimum="bar">Hello.</div>

patternSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the pattern attribute.

Example:

 div <! pattern "bar" $ "Hello."

Result:

 <div pattern="bar">Hello.</div>

pingSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the ping attribute.

Example:

 div <! ping "bar" $ "Hello."

Result:

 <div ping="bar">Hello.</div>

placeholderSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the placeholder attribute.

Example:

 div <! placeholder "bar" $ "Hello."

Result:

 <div placeholder="bar">Hello.</div>

preloadSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the preload attribute.

Example:

 div <! preload "bar" $ "Hello."

Result:

 <div preload="bar">Hello.</div>

pubdateSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the pubdate attribute.

Example:

 div <! pubdate "bar" $ "Hello."

Result:

 <div pubdate="bar">Hello.</div>

radiogroupSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the radiogroup attribute.

Example:

 div <! radiogroup "bar" $ "Hello."

Result:

 <div radiogroup="bar">Hello.</div>

readonlySource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the readonly attribute.

Example:

 div <! readonly "bar" $ "Hello."

Result:

 <div readonly="bar">Hello.</div>

relSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the rel attribute.

Example:

 div <! rel "bar" $ "Hello."

Result:

 <div rel="bar">Hello.</div>

requiredSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the required attribute.

Example:

 div <! required "bar" $ "Hello."

Result:

 <div required="bar">Hello.</div>

reversedSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the reversed attribute.

Example:

 div <! reversed "bar" $ "Hello."

Result:

 <div reversed="bar">Hello.</div>

rowsSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the rows attribute.

Example:

 div <! rows "bar" $ "Hello."

Result:

 <div rows="bar">Hello.</div>

rowspanSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the rowspan attribute.

Example:

 div <! rowspan "bar" $ "Hello."

Result:

 <div rowspan="bar">Hello.</div>

sandboxSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the sandbox attribute.

Example:

 div <! sandbox "bar" $ "Hello."

Result:

 <div sandbox="bar">Hello.</div>

scopeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the scope attribute.

Example:

 div <! scope "bar" $ "Hello."

Result:

 <div scope="bar">Hello.</div>

scopedSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the scoped attribute.

Example:

 div <! scoped "bar" $ "Hello."

Result:

 <div scoped="bar">Hello.</div>

seamlessSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the seamless attribute.

Example:

 div <! seamless "bar" $ "Hello."

Result:

 <div seamless="bar">Hello.</div>

selectedSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the selected attribute.

Example:

 div <! selected "bar" $ "Hello."

Result:

 <div selected="bar">Hello.</div>

shapeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the shape attribute.

Example:

 div <! shape "bar" $ "Hello."

Result:

 <div shape="bar">Hello.</div>

sizeSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the size attribute.

Example:

 div <! size "bar" $ "Hello."

Result:

 <div size="bar">Hello.</div>

sizesSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the sizes attribute.

Example:

 div <! sizes "bar" $ "Hello."

Result:

 <div sizes="bar">Hello.</div>

spanSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the span attribute.

Example:

 div <! span "bar" $ "Hello."

Result:

 <div span="bar">Hello.</div>

spellcheckSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the spellcheck attribute.

Example:

 div <! spellcheck "bar" $ "Hello."

Result:

 <div spellcheck="bar">Hello.</div>

srcSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the src attribute.

Example:

 div <! src "bar" $ "Hello."

Result:

 <div src="bar">Hello.</div>

srcdocSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the srcdoc attribute.

Example:

 div <! srcdoc "bar" $ "Hello."

Result:

 <div srcdoc="bar">Hello.</div>

startSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the start attribute.

Example:

 div <! start "bar" $ "Hello."

Result:

 <div start="bar">Hello.</div>

stepSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the step attribute.

Example:

 div <! step "bar" $ "Hello."

Result:

 <div step="bar">Hello.</div>

styleSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the style attribute.

Example:

 div <! style "bar" $ "Hello."

Result:

 <div style="bar">Hello.</div>

subjectSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the subject attribute.

Example:

 div <! subject "bar" $ "Hello."

Result:

 <div subject="bar">Hello.</div>

summarySource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the summary attribute.

Example:

 div <! summary "bar" $ "Hello."

Result:

 <div summary="bar">Hello.</div>

tabindexSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the tabindex attribute.

Example:

 div <! tabindex "bar" $ "Hello."

Result:

 <div tabindex="bar">Hello.</div>

targetSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the target attribute.

Example:

 div <! target "bar" $ "Hello."

Result:

 <div target="bar">Hello.</div>

titleSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the title attribute.

Example:

 div <! title "bar" $ "Hello."

Result:

 <div title="bar">Hello.</div>

type_Source

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the type attribute.

Example:

 div <! type_ "bar" $ "Hello."

Result:

 <div type="bar">Hello.</div>

usemapSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the usemap attribute.

Example:

 div <! usemap "bar" $ "Hello."

Result:

 <div usemap="bar">Hello.</div>

valueSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the value attribute.

Example:

 div <! value "bar" $ "Hello."

Result:

 <div value="bar">Hello.</div>

widthSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the width attribute.

Example:

 div <! width "bar" $ "Hello."

Result:

 <div width="bar">Hello.</div>

wrapSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the wrap attribute.

Example:

 div <! wrap "bar" $ "Hello."

Result:

 <div wrap="bar">Hello.</div>

xmlnsSource

Arguments

:: AttributeValue

Attribute value.

-> Attribute

Resulting attribute.

Combinator for the xmlns attribute.

Example:

 div <! xmlns "bar" $ "Hello."

Result:

 <div xmlns="bar">Hello.</div>