Safe Haskell | None |
---|---|
Language | Haskell2010 |
This module exports combinators that provide you with the ability to set attributes on HTML elements.
Synopsis
- accept :: AttributeValue -> Attribute ev
- accesskey :: AttributeValue -> Attribute ev
- action :: AttributeValue -> Attribute ev
- allowfullscreen :: AttributeValue -> Attribute ev
- allowtransparency :: AttributeValue -> Attribute ev
- alt :: AttributeValue -> Attribute ev
- async :: AttributeValue -> Attribute ev
- autocapitalize :: AttributeValue -> Attribute ev
- autocomplete :: AttributeValue -> Attribute ev
- autocorrect :: AttributeValue -> Attribute ev
- autofocus :: AttributeValue -> Attribute ev
- autoplay :: AttributeValue -> Attribute ev
- cellpadding :: AttributeValue -> Attribute ev
- cellspacing :: AttributeValue -> Attribute ev
- charset :: AttributeValue -> Attribute ev
- checked :: AttributeValue -> Attribute ev
- class_ :: AttributeValue -> Attribute ev
- colspan :: AttributeValue -> Attribute ev
- cols :: AttributeValue -> Attribute ev
- content :: AttributeValue -> Attribute ev
- contenteditable :: AttributeValue -> Attribute ev
- contextmenu :: AttributeValue -> Attribute ev
- controls :: AttributeValue -> Attribute ev
- coords :: AttributeValue -> Attribute ev
- crossorigin :: AttributeValue -> Attribute ev
- data_ :: AttributeValue -> Attribute ev
- datetime :: AttributeValue -> Attribute ev
- defer :: AttributeValue -> Attribute ev
- dir :: AttributeValue -> Attribute ev
- disabled :: AttributeValue -> Attribute ev
- download :: AttributeValue -> Attribute ev
- draggable :: AttributeValue -> Attribute ev
- enctype :: AttributeValue -> Attribute ev
- form :: AttributeValue -> Attribute ev
- formnovalidate :: AttributeValue -> Attribute ev
- frameborder :: AttributeValue -> Attribute ev
- height :: AttributeValue -> Attribute ev
- hidden :: AttributeValue -> Attribute ev
- href :: AttributeValue -> Attribute ev
- hreflang :: AttributeValue -> Attribute ev
- for :: AttributeValue -> Attribute ev
- httpequiv :: AttributeValue -> Attribute ev
- icon :: AttributeValue -> Attribute ev
- id :: AttributeValue -> Attribute ev
- itemprop :: AttributeValue -> Attribute ev
- itemscope :: AttributeValue -> Attribute ev
- itemtype :: AttributeValue -> Attribute ev
- key :: AttributeValue -> Attribute ev
- label :: AttributeValue -> Attribute ev
- lang :: AttributeValue -> Attribute ev
- list :: AttributeValue -> Attribute ev
- loop :: AttributeValue -> Attribute ev
- max :: AttributeValue -> Attribute ev
- maxlength :: AttributeValue -> Attribute ev
- mediagroup :: AttributeValue -> Attribute ev
- method :: AttributeValue -> Attribute ev
- min :: AttributeValue -> Attribute ev
- multiple :: AttributeValue -> Attribute ev
- muted :: AttributeValue -> Attribute ev
- name :: AttributeValue -> Attribute ev
- novalidate :: AttributeValue -> Attribute ev
- pattern :: AttributeValue -> Attribute ev
- placeholder :: AttributeValue -> Attribute ev
- poster :: AttributeValue -> Attribute ev
- preload :: AttributeValue -> Attribute ev
- property :: AttributeValue -> Attribute ev
- radiogroup :: AttributeValue -> Attribute ev
- readonly :: AttributeValue -> Attribute ev
- rel :: AttributeValue -> Attribute ev
- required :: AttributeValue -> Attribute ev
- role :: AttributeValue -> Attribute ev
- rowspan :: AttributeValue -> Attribute ev
- rows :: AttributeValue -> Attribute ev
- sandbox :: AttributeValue -> Attribute ev
- scope :: AttributeValue -> Attribute ev
- scrollleft :: AttributeValue -> Attribute ev
- scrolltop :: AttributeValue -> Attribute ev
- scrolling :: AttributeValue -> Attribute ev
- seamless :: AttributeValue -> Attribute ev
- selected :: AttributeValue -> Attribute ev
- shape :: AttributeValue -> Attribute ev
- size :: AttributeValue -> Attribute ev
- span :: AttributeValue -> Attribute ev
- spellcheck :: AttributeValue -> Attribute ev
- src :: AttributeValue -> Attribute ev
- srcdoc :: AttributeValue -> Attribute ev
- srcset :: AttributeValue -> Attribute ev
- start :: AttributeValue -> Attribute ev
- step :: AttributeValue -> Attribute ev
- style :: AttributeValue -> Attribute ev
- tabindex :: AttributeValue -> Attribute ev
- target :: AttributeValue -> Attribute ev
- title :: AttributeValue -> Attribute ev
- type_ :: AttributeValue -> Attribute ev
- usemap :: AttributeValue -> Attribute ev
- value :: AttributeValue -> Attribute ev
- width :: AttributeValue -> Attribute ev
- wmode :: AttributeValue -> Attribute ev
Documentation
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the accept
attribute.
Example:
div ! accept "bar" $ "Hello."
Result:
<div accept="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the accessKey
attribute.
Example:
div ! accesskey "bar" $ "Hello."
Result:
<div accessKey="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the action
attribute.
Example:
div ! action "bar" $ "Hello."
Result:
<div action="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the allowFullScreen
attribute.
Example:
div ! allowfullscreen "bar" $ "Hello."
Result:
<div allowFullScreen="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the allowTransparency
attribute.
Example:
div ! allowtransparency "bar" $ "Hello."
Result:
<div allowTransparency="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the alt
attribute.
Example:
div ! alt "bar" $ "Hello."
Result:
<div alt="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the async
attribute.
Example:
div ! async "bar" $ "Hello."
Result:
<div async="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the autoCapitalize
attribute.
Example:
div ! autocapitalize "bar" $ "Hello."
Result:
<div autoCapitalize="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the autoComplete
attribute.
Example:
div ! autocomplete "bar" $ "Hello."
Result:
<div autoComplete="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the autoCorrect
attribute.
Example:
div ! autocorrect "bar" $ "Hello."
Result:
<div autoCorrect="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the autoFocus
attribute.
Example:
div ! autofocus "bar" $ "Hello."
Result:
<div autoFocus="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the autoPlay
attribute.
Example:
div ! autoplay "bar" $ "Hello."
Result:
<div autoPlay="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the cellPadding
attribute.
Example:
div ! cellpadding "bar" $ "Hello."
Result:
<div cellPadding="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the cellSpacing
attribute.
Example:
div ! cellspacing "bar" $ "Hello."
Result:
<div cellSpacing="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the charSet
attribute.
Example:
div ! charset "bar" $ "Hello."
Result:
<div charSet="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the checked
attribute.
Example:
div ! checked "bar" $ "Hello."
Result:
<div checked="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the className
attribute.
Example:
div ! class_ "bar" $ "Hello."
Result:
<div className="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the colSpan
attribute.
Example:
div ! colspan "bar" $ "Hello."
Result:
<div colSpan="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the cols
attribute.
Example:
div ! cols "bar" $ "Hello."
Result:
<div cols="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the content
attribute.
Example:
div ! content "bar" $ "Hello."
Result:
<div content="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the contentEditable
attribute.
Example:
div ! contenteditable "bar" $ "Hello."
Result:
<div contentEditable="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the contextMenu
attribute.
Example:
div ! contextmenu "bar" $ "Hello."
Result:
<div contextMenu="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the controls
attribute.
Example:
div ! controls "bar" $ "Hello."
Result:
<div controls="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the coords
attribute.
Example:
div ! coords "bar" $ "Hello."
Result:
<div coords="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the crossOrigin
attribute.
Example:
div ! crossorigin "bar" $ "Hello."
Result:
<div crossOrigin="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the data
attribute.
Example:
div ! data_ "bar" $ "Hello."
Result:
<div data="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the dateTime
attribute.
Example:
div ! datetime "bar" $ "Hello."
Result:
<div dateTime="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the defer
attribute.
Example:
div ! defer "bar" $ "Hello."
Result:
<div defer="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the dir
attribute.
Example:
div ! dir "bar" $ "Hello."
Result:
<div dir="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the disabled
attribute.
Example:
div ! disabled "bar" $ "Hello."
Result:
<div disabled="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the download
attribute.
Example:
div ! download "bar" $ "Hello."
Result:
<div download="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the draggable
attribute.
Example:
div ! draggable "bar" $ "Hello."
Result:
<div draggable="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the encType
attribute.
Example:
div ! enctype "bar" $ "Hello."
Result:
<div encType="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the form
attribute.
Example:
div ! form "bar" $ "Hello."
Result:
<div form="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the formNoValidate
attribute.
Example:
div ! formnovalidate "bar" $ "Hello."
Result:
<div formNoValidate="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the frameBorder
attribute.
Example:
div ! frameborder "bar" $ "Hello."
Result:
<div frameBorder="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the height
attribute.
Example:
div ! height "bar" $ "Hello."
Result:
<div height="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the hidden
attribute.
Example:
div ! hidden "bar" $ "Hello."
Result:
<div hidden="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the href
attribute.
Example:
div ! href "bar" $ "Hello."
Result:
<div href="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the hrefLang
attribute.
Example:
div ! hreflang "bar" $ "Hello."
Result:
<div hrefLang="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the htmlFor
attribute.
Example:
div ! for "bar" $ "Hello."
Result:
<div htmlFor="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the httpEquiv
attribute.
Example:
div ! httpequiv "bar" $ "Hello."
Result:
<div httpEquiv="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the icon
attribute.
Example:
div ! icon "bar" $ "Hello."
Result:
<div icon="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the id
attribute.
Example:
div ! id "bar" $ "Hello."
Result:
<div id="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the itemProp
attribute.
Example:
div ! itemprop "bar" $ "Hello."
Result:
<div itemProp="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the itemScope
attribute.
Example:
div ! itemscope "bar" $ "Hello."
Result:
<div itemScope="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the itemType
attribute.
Example:
div ! itemtype "bar" $ "Hello."
Result:
<div itemType="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the key
attribute.
Example:
div ! key "bar" $ "Hello."
Result:
<div key="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the label
attribute.
Example:
div ! label "bar" $ "Hello."
Result:
<div label="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the lang
attribute.
Example:
div ! lang "bar" $ "Hello."
Result:
<div lang="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the list
attribute.
Example:
div ! list "bar" $ "Hello."
Result:
<div list="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the loop
attribute.
Example:
div ! loop "bar" $ "Hello."
Result:
<div loop="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the max
attribute.
Example:
div ! max "bar" $ "Hello."
Result:
<div max="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the maxLength
attribute.
Example:
div ! maxlength "bar" $ "Hello."
Result:
<div maxLength="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the mediaGroup
attribute.
Example:
div ! mediagroup "bar" $ "Hello."
Result:
<div mediaGroup="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the method
attribute.
Example:
div ! method "bar" $ "Hello."
Result:
<div method="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the min
attribute.
Example:
div ! min "bar" $ "Hello."
Result:
<div min="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the multiple
attribute.
Example:
div ! multiple "bar" $ "Hello."
Result:
<div multiple="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the muted
attribute.
Example:
div ! muted "bar" $ "Hello."
Result:
<div muted="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the name
attribute.
Example:
div ! name "bar" $ "Hello."
Result:
<div name="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the noValidate
attribute.
Example:
div ! novalidate "bar" $ "Hello."
Result:
<div noValidate="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the pattern
attribute.
Example:
div ! pattern "bar" $ "Hello."
Result:
<div pattern="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the placeholder
attribute.
Example:
div ! placeholder "bar" $ "Hello."
Result:
<div placeholder="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the poster
attribute.
Example:
div ! poster "bar" $ "Hello."
Result:
<div poster="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the preload
attribute.
Example:
div ! preload "bar" $ "Hello."
Result:
<div preload="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the property
attribute.
Example:
div ! property "bar" $ "Hello."
Result:
<div property="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the radioGroup
attribute.
Example:
div ! radiogroup "bar" $ "Hello."
Result:
<div radioGroup="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the readOnly
attribute.
Example:
div ! readonly "bar" $ "Hello."
Result:
<div readOnly="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the rel
attribute.
Example:
div ! rel "bar" $ "Hello."
Result:
<div rel="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the required
attribute.
Example:
div ! required "bar" $ "Hello."
Result:
<div required="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the role
attribute.
Example:
div ! role "bar" $ "Hello."
Result:
<div role="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the rowSpan
attribute.
Example:
div ! rowspan "bar" $ "Hello."
Result:
<div rowSpan="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the rows
attribute.
Example:
div ! rows "bar" $ "Hello."
Result:
<div rows="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the sandbox
attribute.
Example:
div ! sandbox "bar" $ "Hello."
Result:
<div sandbox="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the scope
attribute.
Example:
div ! scope "bar" $ "Hello."
Result:
<div scope="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the scrollLeft
attribute.
Example:
div ! scrollleft "bar" $ "Hello."
Result:
<div scrollLeft="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the scrollTop
attribute.
Example:
div ! scrolltop "bar" $ "Hello."
Result:
<div scrollTop="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the scrolling
attribute.
Example:
div ! scrolling "bar" $ "Hello."
Result:
<div scrolling="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the seamless
attribute.
Example:
div ! seamless "bar" $ "Hello."
Result:
<div seamless="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the selected
attribute.
Example:
div ! selected "bar" $ "Hello."
Result:
<div selected="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the shape
attribute.
Example:
div ! shape "bar" $ "Hello."
Result:
<div shape="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the size
attribute.
Example:
div ! size "bar" $ "Hello."
Result:
<div size="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the span
attribute.
Example:
div ! span "bar" $ "Hello."
Result:
<div span="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the spellCheck
attribute.
Example:
div ! spellcheck "bar" $ "Hello."
Result:
<div spellCheck="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the src
attribute.
Example:
div ! src "bar" $ "Hello."
Result:
<div src="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the srcDoc
attribute.
Example:
div ! srcdoc "bar" $ "Hello."
Result:
<div srcDoc="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the srcSet
attribute.
Example:
div ! srcset "bar" $ "Hello."
Result:
<div srcSet="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the start
attribute.
Example:
div ! start "bar" $ "Hello."
Result:
<div start="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the step
attribute.
Example:
div ! step "bar" $ "Hello."
Result:
<div step="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the style
attribute.
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the tabIndex
attribute.
Example:
div ! tabindex "bar" $ "Hello."
Result:
<div tabIndex="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the target
attribute.
Example:
div ! target "bar" $ "Hello."
Result:
<div target="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the title
attribute.
Example:
div ! title "bar" $ "Hello."
Result:
<div title="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the type
attribute.
Example:
div ! type_ "bar" $ "Hello."
Result:
<div type="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the useMap
attribute.
Example:
div ! usemap "bar" $ "Hello."
Result:
<div useMap="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the value
attribute.
Example:
div ! value "bar" $ "Hello."
Result:
<div value="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the width
attribute.
Example:
div ! width "bar" $ "Hello."
Result:
<div width="bar">Hello.</div>
:: AttributeValue | Attribute value. |
-> Attribute ev | Resulting attribute. |
Combinator for the wmode
attribute.
Example:
div ! wmode "bar" $ "Hello."
Result:
<div wmode="bar">Hello.</div>