module Html_types:sig
..end
HTML types with variants, goes with Html_sigs.T
.
typecdata =
string
Character data
typeid =
string
A document-unique identifier
typeidref =
string
A reference to a document-unique identifier
typeidrefs =
idref list
A space-separated list of references to document-unique identifiers
typename =
string
A name with the same character constraints as ID above
typenmtoken =
string
A name composed of only name tokens as defined in XML 1.0
typenmtokens =
nmtoken list
One or more white space separated NMTOKEN values
typecharacter =
char
A single character from ISO 10646.
typecharset =
string
A character encoding, as per RFC2045 (MIME).
typecharsets =
charset list
A space-separated list of character encodings, as per RFC2045 (MIME).
typecontenttype =
string
A media type, as per RFC2045 (MIME).
typecontenttypes =
contenttype list
A comma-separated list of media types, as per RFC2045 (MIME).
typenumber =
int
typenumbers =
number list
typecoords =
string list
Comma- separated list of coordinates to use in defining areas.
typedatetime =
string
Date and time information.
typenumber_or_datetime =
[ `Datetime of datetime | `Number of number ]
Either a number or date and time information.
typefpi =
string
A character string representing an SGML Formal Public Identifier.
typeframetarget =
string
Frame name used as destination for results of certain actions.
typelanguagecode =
string
A language code, as per RFC5646/BCP47.
typelinktype =
[ `Alternate
| `Archives
| `Author
| `Bookmark
| `Canonical
| `External
| `First
| `Help
| `Icon
| `Index
| `Last
| `License
| `Next
| `Nofollow
| `Noopener
| `Noreferrer
| `Other of string
| `Pingback
| `Prefetch
| `Prev
| `Search
| `Sidebar
| `Stylesheet
| `Tag
| `Up ]
typelinktypes =
linktype list
Authors may use the following recognized link types, listed here with
their conventional interpretations. A LinkTypes value refers to a
space-separated list of link types. White space characters are not
permitted within link types. These link types are case-insensitive, i.e.,
"Alternate"
has the same meaning as "alternate"
.
User agents, search engines, etc. may interpret these link types in a variety of ways. For example, user agents may provide access to linked documents through a navigation bar.
`Alternate
:
Gives alternate representations of the current document.`Archives
:
Provides a link to a collection of records, documents, or other materials of historical interest.`Author
:
Gives a link to the current document's author.`Bookmark
:
Gives the permalink for the nearest ancestor section.`Canonical
:
Gives the preferred location for accessing the current document.`External
:
Indicates that the referenced document is not part of the same site as the current document.`First
:
Indicates that the current document is a part of a series, and that the first document in the series is the referenced document.`Help
:
Provides a link to context-sensitive help.`Icon
:
Imports an icon to represent the current document.`Index
:
Gives a link to the document that provides a table of contents or index listing the current document.`Last
:
Indicates that the current document is a part of a series, and that the last document in the series is the referenced document.`Licence
:
Indicates that the main content of the current document is covered by the copyright license described by the referenced document.`Next
:
Indicates that the current document is a part of a series, and that the next document in the series is the referenced document.`Nofollow
:
Indicates that the current document's original author or publisher does not endorse the referenced document.`Noreferrer
:
Requires that the user agent not send an HTTP Referer (sic) header if the user follows the hyperlink.`Noopener
:
Instructs the browser to open the link without granting the new browsing context access to the document that opened it.`Pingback
:
Gives the address of the pingback server that handles pingbacks to the current document.`Prefetch
:
Specifies that the target resource should be preemptively cached.`Prev
:
Indicates that the current document is a part of a series, and that the previous document in the series is the referenced document.`Search
:
Gives a link to a resource that can be used to search through the current document and its related pages.`Stylesheet
:
Imports a stylesheet.`Sidebar
:
Specifies that the referenced document, if retrieved, is intended to be shown in the browser's sidebar (if it has one).`Tag
:
Gives a tag (identified by the given address) that applies to the current document.`Up
:
Provides a link to a document giving the context for the current document.typemediadesc_token =
[ `All
| `Aural
| `Braille
| `Embossed
| `Handheld
| `Projection
| `Raw_mediadesc of string
| `Screen
| `Speech
| `Tty
| `Tv ]
typemediadesc =
mediadesc_token list
The MediaDesc attribute is a comma-separated list of media descriptors. The following is a list of recognized media descriptors:
`Screen
:
For non-paged computer screens.`TTY
:
For media using a fixed-pitch character grid (like teletypes, terminals, or devices with limited display capabilities).`TV
:
For TV-type devices (low resolution, limited scrollability).`Projection
:
For projectors.`Handheld
:
For handheld devices (small screen, limited bandwidth).`Print
:
For paged and for documents viewed on screen in print preview mode.`Braille
:
For braille tactile feedback devices.`Aural
:
For speech synthesizers.`All
:
For speech synthesizers.`Raw_mediadesc
:
For more complex (untyped) media descriptors.typefloat_number =
float
typepixels =
int
The value is an integer that represents the number of pixels of
the canvas (screen, paper). Thus, the value "50"
means fifty
pixels. For normative information about the definition of a pixel,
please consult CSS2.
typescript_ =
string
Script data can be the content of the "script"
element and the
value of intrinsic event attributes. User agents must not evaluate
script data as HTML markup but instead must pass it on as data to a
script engine.
The case-sensitivity of script data depends on the scripting language.
Please note that script data that is element content may not contain character references, but script data that is the value of an attribute may contain them.
typetext =
string
Arbitrary textual data, likely meant to be human-readable.
typei18n =
[ `Lang | `XML_lang ]
typecore =
[ `Accesskey
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeevents =
[ `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting ]
Javascript events
typearia =
[ `Aria | `Role ]
typecommon =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
Common attributes
These category are mainly subdivised in
typeheading =
[ `H1 | `H2 | `H3 | `H4 | `H5 | `H6 | `Hgroup ]
typesectioning =
[ `Article | `Aside | `Nav | `Section ]
typeresetable =
[ `Input | `Keygen | `Output | `Select | `Textarea ]
typesubmitable =
[ `Button | `Input | `Keygen | `Select | `Textarea ]
typelabelable =
[ `Button
| `Input
| `Keygen
| `Meter
| `Output
| `Progress
| `Select
| `Textarea ]
typelabelable_without_interactive =
[ `Meter | `Progress ]
typeformatblock =
[ `Address
| `Article
| `Aside
| `Blockquote
| `Div
| `Footer
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Nav
| `P
| `Pre
| `Section ]
typesectionningroot =
[ `Blockquote | `Body | `Details | `Fieldset | `Figure | `Td ]
typelisted =
[ `Button | `Fieldset | `Input | `Keygen | `Output | `Select | `Textarea ]
typeformassociated =
[ `Button
| `Fieldset
| `Input
| `Keygen
| `Label
| `Meter
| `Output
| `Progress
| `Select
| `Textarea ]
type('interactive, 'noscript, 'regular, 'media)
transparent =[ `A of 'interactive
| `Audio of 'media
| `Audio_interactive of 'media
| `Canvas of 'regular
| `Del of 'regular
| `Ins of 'regular
| `Map of 'regular
| `Noscript of 'noscript
| `Object of 'regular
| `Object_interactive of 'regular
| `Video of 'media
| `Video_interactive of 'media ]
Transparent elements.
Such elements have a part of they children in their data
and behaves like them. We could do something like a: 'a elt list -> 'a elt
but the information about the node name would be forgotten and would allow
things like that : p [a [a []]]
.
This system allow to build non-conforming terms such as a [a []]
but when passed
to a standard element (such as p
), it will yield an error.
Exception to that : if you embdedd the element in another transparent (of an
another kind) : p [noscript (a [a []])]
will be correctly typed.
type('noscript, 'regular, 'media)
transparent_without_interactive =[ `Audio of 'media
| `Canvas of 'regular
| `Del of 'regular
| `Ins of 'regular
| `Map of 'regular
| `Noscript of 'noscript
| `Object of 'regular
| `Video of 'media ]
type('interactive, 'regular, 'media)
transparent_without_noscript =[ `A of 'interactive
| `Audio of 'media
| `Audio_interactive of 'media
| `Canvas of 'regular
| `Del of 'regular
| `Ins of 'regular
| `Map of 'regular
| `Object of 'regular
| `Object_interactive of 'regular
| `Video of 'media
| `Video_interactive of 'media ]
type('interactive, 'noscript, 'regular)
transparent_without_media =[ `A of 'interactive
| `Canvas of 'regular
| `Del of 'regular
| `Ins of 'regular
| `Map of 'regular
| `Noscript of 'noscript
| `Object of 'regular
| `Object_interactive of 'regular ]
typemetadata_without_title =
[ `Base
| `Command
| `Link
| `Meta
| `Noscript of [ `Link | `Meta | `Style ]
| `Script
| `Style ]
Metadata without title
typemetadata =
[ `Base
| `Command
| `Link
| `Meta
| `Noscript of [ `Link | `Meta | `Style ]
| `Script
| `Style
| `Title ]
Metadata contents. Used specially in <head>
Interactive contents : contents that require user-interaction (Forms, link, etc.)
typecore_interactive =
[ `Button
| `Details
| `Embed
| `Iframe
| `Img_interactive
| `Input
| `Keygen
| `Label
| `Menu
| `Select
| `Textarea ]
Core element types are element types without transparent.
typeinteractive =
[ `Audio of interactive
| `Button
| `Canvas of interactive
| `Del of interactive
| `Details
| `Embed
| `Iframe
| `Img_interactive
| `Input
| `Ins of interactive
| `Keygen
| `Label
| `Map of interactive
| `Menu
| `Noscript of interactive
| `Object of interactive
| `Select
| `Textarea
| `Video of interactive ]
typecore_phrasing =
[ `Abbr
| `B
| `Bdo
| `Br
| `Button
| `Cite
| `Code
| `Command
| `Datalist
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Kbd
| `Keygen
| `Label
| `Mark
| `Meter
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Wbr ]
Phrasing contents is inline contents : bold text, span, and so on.
typecore_phrasing_without_noscript =
[ `Abbr
| `B
| `Bdo
| `Br
| `Button
| `Cite
| `Code
| `Command
| `Datalist
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Kbd
| `Keygen
| `Label
| `Mark
| `Meter
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Wbr ]
typecore_phrasing_without_interactive =
[ `Abbr
| `B
| `Bdo
| `Br
| `Cite
| `Code
| `Command
| `Datalist
| `Dfn
| `Em
| `I
| `Img
| `Kbd
| `Mark
| `Meter
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Time
| `U
| `Var
| `Wbr ]
typecore_phrasing_without_media =
[ `Abbr
| `B
| `Bdo
| `Br
| `Button
| `Cite
| `Code
| `Command
| `Datalist
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Kbd
| `Keygen
| `Label
| `Mark
| `Meter
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Wbr ]
typephrasing_without_noscript =
(phrasing_without_interactive, phrasing,
phrasing_without_media)
transparent_without_noscript
typephrasing_without_media =
[ `A of phrasing_without_interactive
| `Abbr
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing
| `Kbd
| `Keygen
| `Label
| `Map of phrasing
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing
| `Object_interactive of phrasing
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Wbr ]
typephrasing_without_interactive =
[ `Abbr
| `Audio of phrasing_without_media
| `B
| `Bdo
| `Br
| `Canvas of phrasing
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing
| `Dfn
| `Em
| `I
| `Img
| `Ins of phrasing
| `Kbd
| `Map of phrasing
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Wbr ]
typephrasing =
[ `A of phrasing_without_interactive
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing
| `Kbd
| `Keygen
| `Label
| `Map of phrasing
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing
| `Object_interactive of phrasing
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr ]
type([< `A of [< phrasing_without_interactive ]
between_phrasing_and_phrasing_without_interactive =
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing
| `Kbd
| `Keygen
| `Label
| `Map of phrasing
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing
| `Object_interactive of phrasing
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr
> `Abbr `B `Bdo `Br `Canvas `Cite `Code `Command `Datalist `Del `Dfn `Em `I
`Img `Ins `Kbd `Map `Mark `Meter `Noscript `Object `PCDATA `Progress `Q
`Ruby `Samp `Script `Small `Span `Strong `Sub `Sup `Svg `Time `U `Var `Wbr
], [< phrasing_without_interactive ] as 'b)[< `A of 'b
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing
| `Kbd
| `Keygen
| `Label
| `Map of phrasing
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing
| `Object_interactive of phrasing
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr
> `Abbr `B `Bdo `Br `Canvas `Cite `Code `Command `Datalist `Del `Dfn `Em `I
`Img `Ins `Kbd `Map `Mark `Meter `Noscript `Object `PCDATA `Progress `Q
`Ruby `Samp `Script `Small `Span `Strong `Sub `Sup `Svg `Time `U `Var `Wbr
] as 'a
typephrasing_without_dfn =
[ `A of phrasing_without_interactive
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing_without_dfn
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing_without_dfn
| `Em
| `I
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing_without_dfn
| `Kbd
| `Keygen
| `Label
| `Map of phrasing_without_dfn
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing_without_dfn
| `Object_interactive of phrasing_without_dfn
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr ]
Phrasing without the interactive markups
typephrasing_without_label =
[ `A of phrasing_without_interactive
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing_without_label
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing_without_label
| `Dfn
| `Em
| `I
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing_without_label
| `Kbd
| `Keygen
| `Map of phrasing_without_label
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing_without_label
| `Object_interactive of phrasing_without_label
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr ]
typephrasing_without_progress =
[ `A of phrasing_without_interactive
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing_without_progress
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing_without_progress
| `Dfn
| `Em
| `I
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing_without_progress
| `Kbd
| `Keygen
| `Label
| `Map of phrasing_without_progress
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing_without_progress
| `Object_interactive of phrasing_without_progress
| `Output
| `PCDATA
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr ]
typephrasing_without_time =
[ `A of phrasing_without_interactive
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing_without_time
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing_without_time
| `Dfn
| `Em
| `I
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing_without_time
| `Kbd
| `Keygen
| `Label
| `Map of phrasing_without_time
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing_without_time
| `Object_interactive of phrasing_without_time
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Textarea
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr ]
typephrasing_without_meter =
[ `A of phrasing_without_interactive
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing_without_meter
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing_without_meter
| `Dfn
| `Em
| `I
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing_without_meter
| `Kbd
| `Keygen
| `Label
| `Map of phrasing_without_meter
| `Mark
| `Noscript of phrasing_without_noscript
| `Object of phrasing_without_meter
| `Object_interactive of phrasing_without_meter
| `Output
| `PCDATA
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr ]
typecore_flow5 =
[ `Abbr
| `Address
| `Article
| `Aside
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Cite
| `Code
| `Command
| `Datalist
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Kbd
| `Keygen
| `Label
| `Main
| `Mark
| `Menu
| `Meter
| `Nav
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Wbr ]
typecore_flow5_without_interactive =
[ `Abbr
| `Address
| `Article
| `Aside
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Cite
| `Code
| `Command
| `Datalist
| `Dfn
| `Div
| `Dl
| `Em
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Img
| `Input
| `Kbd
| `Keygen
| `Label
| `Main
| `Mark
| `Menu
| `Meter
| `Nav
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Wbr ]
typecore_flow5_without_noscript =
[ `Abbr
| `Address
| `Article
| `Aside
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Cite
| `Code
| `Command
| `Datalist
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Kbd
| `Keygen
| `Label
| `Main
| `Mark
| `Menu
| `Meter
| `Nav
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Wbr ]
typecore_flow5_without_media =
[ `Abbr
| `Address
| `Article
| `Aside
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Cite
| `Code
| `Command
| `Datalist
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Kbd
| `Keygen
| `Label
| `Main
| `Mark
| `Menu
| `Meter
| `Nav
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Wbr ]
typeflow5_without_interactive =
[ `Abbr
| `Address
| `Article
| `Aside
| `Audio of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Dfn
| `Div
| `Dl
| `Em
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Img
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Wbr ]
typeflow5_without_noscript =
[ `A of flow5_without_interactive
| `Abbr
| `Address
| `Article
| `Aside
| `Audio of flow5_without_media
| `Audio_interactive of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Video_interactive of flow5_without_media
| `Wbr ]
typeflow5_without_media =
[ `A of flow5_without_interactive
| `Abbr
| `Address
| `Article
| `Aside
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Wbr ]
typeflow5 =
[ `A of flow5_without_interactive
| `Abbr
| `Address
| `Article
| `Aside
| `Audio of flow5_without_media
| `Audio_interactive of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Video_interactive of flow5_without_media
| `Wbr ]
typeflow5_without_table =
[ `A of flow5_without_interactive
| `Abbr
| `Address
| `Article
| `Aside
| `Audio of flow5_without_media
| `Audio_interactive of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Video_interactive of flow5_without_media
| `Wbr ]
[ `Abbr
| `Address
| `Article
| `Aside
| `Audio of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Dfn
| `Div
| `Dl
| `Em
| `Fieldset
| `Figure
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Hgroup
| `Hr
| `I
| `Img
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Wbr ]
= [ `A of flow5_without_interactive_header_footer
| `Abbr
| `Address
| `Article
| `Aside
| `Audio of flow5_without_media
| `Audio_interactive of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Video_interactive of flow5_without_media
| `Wbr ]
= [< flow5
> `Abbr `Address `Article `Aside `Audio `B `Bdo `Blockquote `Br `Button
`Canvas `Cite `Code `Command `Datalist `Del `Dfn `Div `Dl `Em `Fieldset
`Figure `Form `H1 `H2 `H3 `H4 `H5 `H6 `Hgroup `Hr `I `Img `Input `Ins `Kbd
`Keygen `Label `Map `Mark `Menu `Meter `Nav `Noscript `Object `Ol `Output
`P `PCDATA `Pre `Progress `Q `Ruby `Samp `Script `Section `Select `Small
`Span `Strong `Style `Sub `Sup `Svg `Table `Textarea `Time `U `Ul `Var
`Video `Wbr ]
as 'a
= 'a
= typeflow5_without_form =
[ `A of flow5_without_interactive
| `Abbr
| `Address
| `Article
| `Aside
| `Audio of flow5_without_media
| `Audio_interactive of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Video_interactive of flow5_without_media
| `Wbr ]
[ `A of flow5_without_interactive
| `Abbr
| `Audio of flow5_without_media
| `Audio_interactive of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Form
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Video_interactive of flow5_without_media
| `Wbr ]
= [ `A of flow5_without_interactive
| `Abbr
| `Address
| `Audio of flow5_without_media
| `Audio_interactive of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Form
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Video_interactive of flow5_without_media
| `Wbr ]
= typepcdata =
[ `PCDATA ]
typetxt =
[ `PCDATA ]
type
notag
type
no_attribute_allowed
typenoattrib =
[ `No_attribute_allowed of no_attribute_allowed ]
typehtml =
[ `Html ]
typehtml_content_fun =
[ `Body | `Head ]
typehtml_content =
html_content_fun
typehtml_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `Manifest
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typehead =
[ `Head ]
typehead_content =
metadata
typehead_content_fun =
metadata_without_title
typehead_attrib =
common
typebody =
[ `Body ]
typebody_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnAfterPrint
| `OnBeforePrint
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnHashChange
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMessage
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnOffLine
| `OnOnLine
| `OnPageHide
| `OnPageShow
| `OnPause
| `OnPlay
| `OnPlaying
| `OnPopState
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnRedo
| `OnResize
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnStorage
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnUndo
| `OnUnload
| `OnVolumeChange
| `OnWaiting
| `OneBeforeUnload
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typebody_content =
flow5
typebody_content_fun =
flow5
typesvg =
[ `Svg ]
typesvg_content =
Svg_types.svg_content
typesvg_attrib =
Svg_types.svg_attr
typebase =
[ `Base ]
typebase_content =
notag
typebase_content_fun =
notag
typebase_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Href
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Target
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typetitle =
[ `Title ]
typetitle_content =
[ `PCDATA ]
typetitle_content_fun =
[ `PCDATA ]
typetitle_attrib =
noattrib
[ `Footer ]
= flow5_without_header_footer
= flow5_without_header_footer
= common
= typeheader =
[ `Header ]
typeheader_content =
flow5_without_header_footer
typeheader_content_fun =
flow5_without_header_footer
typeheader_attrib =
common
typesection =
[ `Section ]
typesection_content =
flow5
typesection_content_fun =
flow5
typesection_attrib =
common
[ `Nav ]
= flow5
= flow5
= common
= typeh1 =
[ `H1 ]
typeh1_content =
phrasing
typeh1_content_fun =
phrasing
typeh1_attrib =
common
typeh2 =
[ `H2 ]
typeh2_content =
phrasing
typeh2_content_fun =
phrasing
typeh2_attrib =
common
typeh3 =
[ `H3 ]
typeh3_content =
phrasing
typeh3_content_fun =
phrasing
typeh3_attrib =
common
typeh4 =
[ `H4 ]
typeh4_content =
phrasing
typeh4_content_fun =
phrasing
typeh4_attrib =
common
typeh5 =
[ `H5 ]
typeh5_content =
phrasing
typeh5_content_fun =
phrasing
typeh5_attrib =
common
typeh6 =
[ `H6 ]
typeh6_content =
phrasing
typeh6_content_fun =
phrasing
typeh6_attrib =
common
typehgroup =
[ `Hgroup ]
typehgroup_content =
[ `H1 | `H2 | `H3 | `H4 | `H5 | `H6 ]
typehgroup_content_fun =
[ `H1 | `H2 | `H3 | `H4 | `H5 | `H6 ]
typehgroup_attrib =
common
typeaddress =
[ `Address ]
typeaddress_content =
flow5_without_sectioning_heading_header_footer_address
typeaddress_content_fun =
flow5_without_sectioning_heading_header_footer_address
typeaddress_attrib =
common
typearticle =
[ `Article ]
typearticle_content =
flow5
typearticle_content_fun =
flow5
typearticle_attrib =
common
typeaside =
[ `Aside ]
typeaside_content =
flow5
typeaside_content_fun =
flow5
typeaside_attrib =
common
typemain =
[ `Main ]
typemain_content =
flow5
typemain_content_fun =
flow5
typemain_attrib =
common
typep =
[ `P ]
typep_content =
phrasing
typep_content_fun =
phrasing
typep_attrib =
common
typepre =
[ `Pre ]
typepre_content =
phrasing
typepre_content_fun =
phrasing
typepre_attrib =
common
typeblockquote =
[ `Blockquote ]
typeblockquote_content =
flow5
typeblockquote_content_fun =
flow5
typeblockquote_attrib =
[ `Accesskey
| `Aria
| `Cite
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typediv =
[ `Div ]
typediv_content =
flow5
typediv_content_fun =
flow5
typediv_attrib =
common
typeol =
[ `Ol ]
typeol_content =
[ `Li of
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Int_Value
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ] ]
typeol_content_fun =
[ `Li of
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Int_Value
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ] ]
typeol_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Reversed
| `Role
| `Spellcheck
| `Start
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeli_content =
flow5
typeli_content_fun =
flow5
typeli_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Int_Value
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeli =
[ `Li of li_attrib ]
typeul =
[ `Ul ]
typeul_content =
[ `Li of li_attrib ]
typeul_content_fun =
[ `Li of li_attrib ]
typeul_attrib =
common
typedd =
[ `Dd ]
typedd_content =
flow5
typedd_content_fun =
flow5
typedd_attrib =
common
typedt =
[ `Dt ]
typedt_content =
flow5_without_sectioning_heading_header_footer
typedt_content_fun =
flow5_without_sectioning_heading_header_footer
typedt_attrib =
common
typedl =
[ `Dl ]
typedl_content =
[ `Dd | `Dt ]
typedl_content_fun =
[ `Dd | `Dt ]
typedl_attrib =
common
typefigcaption =
[ `Figcaption ]
typefigcaption_content =
flow5
typefigcaption_content_fun =
flow5
typefigcaption_attrib =
common
typefigure =
[ `Figure ]
typefigure_content =
flow5
typefigure_content_fun =
flow5
typefigure_attrib =
common
typerp =
[ `Rp ]
typerp_content =
phrasing
typerp_content_fun =
phrasing
typerp_attrib =
common
typert =
[ `Rt ]
typert_content =
phrasing
typert_content_fun =
phrasing
typert_attrib =
common
typeruby =
[ `Ruby ]
typeruby_content =
[ `A of phrasing_without_interactive
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing
| `Kbd
| `Keygen
| `Label
| `Map of phrasing
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing
| `Object_interactive of phrasing
| `Output
| `PCDATA
| `Progress
| `Q
| `Rp
| `Rt
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr ]
typeruby_content_fun =
[ `A of phrasing_without_interactive
| `Abbr
| `Audio of phrasing_without_media
| `Audio_interactive of phrasing_without_media
| `B
| `Bdo
| `Br
| `Button
| `Canvas of phrasing
| `Cite
| `Code
| `Command
| `Datalist
| `Del of phrasing
| `Dfn
| `Em
| `Embed
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of phrasing
| `Kbd
| `Keygen
| `Label
| `Map of phrasing
| `Mark
| `Meter
| `Noscript of phrasing_without_noscript
| `Object of phrasing
| `Object_interactive of phrasing
| `Output
| `PCDATA
| `Progress
| `Q
| `Rp
| `Rt
| `Ruby
| `Samp
| `Script
| `Select
| `Small
| `Span
| `Strong
| `Sub
| `Sup
| `Svg
| `Textarea
| `Time
| `U
| `Var
| `Video of phrasing_without_media
| `Video_interactive of phrasing_without_media
| `Wbr ]
typeruby_attrib =
common
typehr =
[ `Hr ]
typehr_content =
notag
typehr_content_fun =
notag
typehr_attrib =
common
typeb =
[ `B ]
typeb_content =
phrasing
typeb_content_fun =
phrasing
typeb_attrib =
common
typei =
[ `I ]
typei_content =
phrasing
typei_content_fun =
phrasing
typei_attrib =
common
typeu =
[ `U ]
typeu_content =
phrasing
typeu_content_fun =
phrasing
typeu_attrib =
common
typesmall =
[ `Small ]
typesmall_content =
phrasing
typesmall_content_fun =
phrasing
typesmall_attrib =
common
typesub =
[ `Sub ]
typesub_content =
phrasing
typesub_content_fun =
phrasing
typesub_attrib =
common
typesup =
[ `Sup ]
typesup_content =
phrasing
typesup_content_fun =
phrasing
typesup_attrib =
common
typemark =
[ `Mark ]
typemark_content =
phrasing
typemark_content_fun =
phrasing
typemark_attrib =
common
typewbr =
[ `Wbr ]
typewbr_content =
notag
typewbr_content_fun =
notag
typewbr_attrib =
common
typebdo =
[ `Bdo ]
typebdo_content =
phrasing
typebdo_content_fun =
phrasing
typebdo_attrib =
common
typeabbr =
[ `Abbr ]
typeabbr_content =
phrasing
typeabbr_content_fun =
phrasing
typeabbr_attrib =
common
typebr =
[ `Br ]
typebr_content =
notag
typebr_content_fun =
notag
typebr_attrib =
common
typecite =
[ `Cite ]
typecite_content =
phrasing
typecite_content_fun =
phrasing
typecite_attrib =
common
typecode =
[ `Code ]
typecode_content =
phrasing
typecode_content_fun =
phrasing
typecode_attrib =
common
typedfn =
[ `Dfn ]
typedfn_content =
phrasing_without_dfn
typedfn_content_fun =
phrasing_without_dfn
typedfn_attrib =
common
typeem =
[ `Em ]
typeem_content =
phrasing
typeem_content_fun =
phrasing
typeem_attrib =
common
typekbd =
[ `Kbd ]
typekbd_content =
phrasing
typekbd_content_fun =
phrasing
typekbd_attrib =
common
typeq =
[ `Q ]
typeq_content =
phrasing
typeq_content_fun =
phrasing
typeq_attrib =
[ `Accesskey
| `Aria
| `Cite
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typesamp =
[ `Samp ]
typesamp_content =
phrasing
typesamp_content_fun =
phrasing
typesamp_attrib =
common
typespan =
[ `Span ]
typespan_content =
phrasing
typespan_content_fun =
phrasing
typespan_attrib =
common
typestrong =
[ `Strong ]
typestrong_content =
phrasing
typestrong_content_fun =
phrasing
typestrong_attrib =
common
typetime =
[ `Time ]
typetime_content =
phrasing_without_time
typetime_content_fun =
phrasing_without_time
typetime_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Datetime
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Pubdate
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typevar =
[ `Var ]
typevar_content =
phrasing
typevar_content_fun =
phrasing
typevar_attrib =
common
typea_content =
flow5_without_interactive
typea_content_fun =
flow5_without_interactive
type'a
a =[ `A of 'a ]
typea_ =
[ `A of a_content ]
typea_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Download
| `Draggable
| `Hidden
| `Href
| `Hreflang
| `Id
| `Lang
| `Media
| `Mime_type
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Rel
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Target
| `Title
| `User_data
| `XML_lang
| `XMLns ]
type'a
del =[ `Del of 'a ]
typedel_content =
flow5
typedel_ =
del_content del
typedel_content_fun =
flow5
typedel_attrib =
[ `Accesskey
| `Aria
| `Cite
| `Class
| `Contenteditable
| `Contextmenu
| `Datetime
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
type'a
ins =[ `Ins of 'a ]
typeins_content =
flow5
typeins_ =
ins_content ins
typeins_content_fun =
flow5
typeins_attrib =
[ `Accesskey
| `Aria
| `Cite
| `Class
| `Contenteditable
| `Contextmenu
| `Datetime
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeiframe =
[ `Iframe ]
typeiframe_content =
[ `PCDATA ]
typeiframe_content_fun =
[ `PCDATA ]
typeiframe_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Height
| `Hidden
| `Id
| `Lang
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Sandbox
| `Seamless
| `Spellcheck
| `Src
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `Width
| `XML_lang
| `XMLns ]
typeobject__content =
[ `A of flow5_without_interactive
| `Abbr
| `Address
| `Article
| `Aside
| `Audio of flow5_without_media
| `Audio_interactive of flow5_without_media
| `B
| `Bdo
| `Blockquote
| `Br
| `Button
| `Canvas of flow5
| `Cite
| `Code
| `Command
| `Datalist
| `Del of flow5
| `Details
| `Dfn
| `Div
| `Dl
| `Em
| `Embed
| `Fieldset
| `Figure
| `Footer
| `Form
| `H1
| `H2
| `H3
| `H4
| `H5
| `H6
| `Header
| `Hgroup
| `Hr
| `I
| `Iframe
| `Img
| `Img_interactive
| `Input
| `Ins of flow5
| `Kbd
| `Keygen
| `Label
| `Main
| `Map of flow5
| `Mark
| `Menu
| `Meter
| `Nav
| `Noscript of flow5_without_noscript
| `Object of flow5
| `Object_interactive of flow5
| `Ol
| `Output
| `P
| `PCDATA
| `Param
| `Pre
| `Progress
| `Q
| `Ruby
| `Samp
| `Script
| `Section
| `Select
| `Small
| `Span
| `Strong
| `Style
| `Sub
| `Sup
| `Svg
| `Table
| `Textarea
| `Time
| `U
| `Ul
| `Var
| `Video of flow5_without_media
| `Video_interactive of flow5_without_media
| `Wbr ]
typeobject__content_fun =
flow5
type'a
object_ =[ `Object of 'a | `Object_interactive of 'a ]
typeobject__ =
object__content object_
typeobject__attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Data
| `Dir
| `Draggable
| `Form
| `Height
| `Hidden
| `Id
| `Lang
| `Mime_type
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `Usemap
| `User_data
| `Width
| `XML_lang
| `XMLns ]
typeparam =
[ `Param ]
typeparam_content =
notag
typeparam_content_fun =
notag
typeparam_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Text_Value
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeembed =
[ `Embed ]
typeembed_content =
notag
typeembed_content_fun =
notag
typeembed_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Height
| `Hidden
| `Id
| `Lang
| `Mime_type
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Src
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `Width
| `XML_lang
| `XMLns ]
typeimg =
[ `Img ]
typeimg_interactive =
[ `Img | `Img_interactive ]
typeimg_content =
notag
typeimg_content_fun =
notag
typeimg_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Height
| `Hidden
| `Id
| `Img_sizes
| `Ismap
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Srcset
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `Width
| `XML_lang
| `XMLns ]
typemedia_attrib =
[ `Autoplay
| `Controls
| `Crossorigin
| `Loop
| `Mediagroup
| `Muted
| `Preload ]
type'a
audio =[ `Audio of 'a ]
type'a
audio_interactive =[ `Audio of 'a | `Audio_interactive of 'a ]
typeaudio_content =
flow5_without_media
typeaudio_ =
audio_content audio
typeaudio_content_fun =
flow5_without_media
typeaudio_attrib =
[ `Accesskey
| `Aria
| `Autoplay
| `Class
| `Contenteditable
| `Contextmenu
| `Controls
| `Crossorigin
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `Loop
| `Mediagroup
| `Muted
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Preload
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
type'a
video =[ `Video of 'a ]
type'a
video_interactive =[ `Video of 'a | `Video_interactive of 'a ]
typevideo_content =
flow5_without_media
typevideo_ =
video_content video
typevideo_content_fun =
flow5_without_media
typevideo_attrib =
[ `Accesskey
| `Aria
| `Autoplay
| `Class
| `Contenteditable
| `Contextmenu
| `Controls
| `Crossorigin
| `Dir
| `Draggable
| `Height
| `Hidden
| `Id
| `Lang
| `Loop
| `Mediagroup
| `Muted
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Poster
| `Preload
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `Width
| `XML_lang
| `XMLns ]
type'a
canvas =[ `Canvas of 'a ]
typecanvas_content =
flow5
typecanvas_ =
canvas_content canvas
typecanvas_content_fun =
flow5
typecanvas_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Height
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `Width
| `XML_lang
| `XMLns ]
typesource =
[ `Source ]
typesource_content =
notag
typesource_content_fun =
notag
typesource_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `Media
| `Mime_type
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Src
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typearea =
[ `Area ]
typearea_content =
notag
typearea_content_fun =
notag
typearea_attrib =
[ `Accesskey
| `Alt
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Coords
| `Dir
| `Download
| `Draggable
| `Hidden
| `Hreflang
| `Id
| `Lang
| `Media
| `Mime_type
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Rel
| `Role
| `Shape
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Target
| `Title
| `User_data
| `XML_lang
| `XMLns ]
type'a
map =[ `Map of 'a ]
typemap_content =
flow5
typemap_ =
map_content map
typemap_content_fun =
flow5
typemap_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typecaption =
[ `Caption ]
typecaption_content =
flow5_without_table
typecaption_content_fun =
flow5_without_table
typecaption_attrib =
common
typetable =
[ `Table ]
typetable_content =
[ `Tr ]
typetable_content_fun =
[ `Tr ]
typetable_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Summary
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typetablex =
[ `Table ]
typetablex_content =
[ `Tbody ]
typetablex_content_fun =
[ `Tbody ]
typetablex_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Summary
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typecolgroup =
[ `Colgroup ]
typecolgroup_content =
[ `Col ]
typecolgroup_content_fun =
[ `Col ]
typecolgroup_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Span
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typecol =
[ `Col ]
typecol_content =
notag
typecol_content_fun =
notag
typecol_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Span
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typethead =
[ `Thead ]
typethead_content =
[ `Tr ]
typethead_content_fun =
[ `Tr ]
typethead_attrib =
common
typetbody =
[ `Tbody ]
typetbody_content =
[ `Tr ]
typetbody_content_fun =
[ `Tr ]
typetbody_attrib =
common
typetfoot =
[ `Tfoot ]
typetfoot_content =
[ `Tr ]
typetfoot_content_fun =
[ `Tr ]
typetfoot_attrib =
common
typetd =
[ `Td ]
typetd_content =
flow5
typetd_content_fun =
flow5
typetd_attrib =
[ `Accesskey
| `Aria
| `Class
| `Colspan
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Headers
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Rowspan
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeth =
[ `Th ]
typeth_content =
phrasing
typeth_content_fun =
phrasing
typeth_attrib =
[ `Accesskey
| `Aria
| `Class
| `Colspan
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Headers
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Rowspan
| `Scope
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typetr =
[ `Tr ]
typetr_content =
[ `Td | `Th ]
typetr_content_fun =
[ `Td | `Th ]
typetr_attrib =
common
typeform =
[ `Form ]
typeform_content =
flow5_without_form
typeform_content_fun =
flow5_without_form
typeform_attrib =
[ `Accept_charset
| `Accesskey
| `Action
| `Aria
| `Autocomplete
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Enctype
| `Hidden
| `Id
| `Lang
| `Method
| `Name
| `Novalidate
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Target
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typefieldset =
[ `Fieldset ]
typefieldset_content =
flow5
typefieldset_content_fun =
flow5
typefieldset_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Form
| `Hidden
| `Id
| `Lang
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typelegend =
[ `Legend ]
typelegend_content =
phrasing
typelegend_content_fun =
phrasing
typelegend_attrib =
common
typelabel =
[ `Label ]
typelabel_content =
phrasing_without_label
typelabel_content_fun =
phrasing_without_label
typelabel_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Form
| `Hidden
| `Id
| `Label_for
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeinput =
[ `Input ]
typeinput_content =
notag
typeinput_content_fun =
notag
typeinput_attrib =
[ `Accept
| `Accesskey
| `Alt
| `Aria
| `Autocomplete
| `Autofocus
| `Checked
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Form
| `Formation
| `Formenctype
| `Formnovalidate
| `Formtarget
| `Height
| `Hidden
| `Id
| `Input_Max
| `Input_Min
| `Input_Type
| `Inputmode
| `Lang
| `List
| `Maxlength
| `Method
| `Minlength
| `Multiple
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Pattern
| `Placeholder
| `ReadOnly
| `Required
| `Role
| `Size
| `Spellcheck
| `Src
| `Step
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `Value
| `Width
| `XML_lang
| `XMLns ]
typetextarea =
[ `Textarea ]
typetextarea_attrib =
[ `Accesskey
| `Aria
| `Autofocus
| `Class
| `Cols
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Form
| `Hidden
| `Id
| `Lang
| `Maxlength
| `Minlength
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Placeholder
| `ReadOnly
| `Required
| `Role
| `Rows
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `Wrap
| `XML_lang
| `XMLns ]
typetextarea_content =
[ `PCDATA ]
typetextarea_content_fun =
textarea_content
[ `Button ]
= phrasing_without_interactive
= phrasing_without_interactive
= [ `Accesskey
| `Aria
| `Autofocus
| `Button_Type
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Form
| `Formaction
| `Formenctype
| `Formnovalidate
| `Formtarget
| `Hidden
| `Id
| `Lang
| `Method
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Text_Value
| `Title
| `User_data
| `XML_lang
| `XMLns ]
= typeselect =
[ `Select ]
typeselect_content =
[ `Optgroup | `Option ]
typeselect_content_fun =
[ `Optgroup | `Option ]
typeselect_attrib =
[ `Accesskey
| `Aria
| `Autofocus
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Form
| `Hidden
| `Id
| `Lang
| `Multiple
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Required
| `Role
| `Size
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typedatalist =
[ `Datalist ]
typedatalist_content =
notag
typedatalist_content_fun =
notag
typedatalist_attrib =
common
typeoptgroup =
[ `Optgroup ]
typeoptgroup_content =
[ `Option ]
typeoptgroup_content_fun =
[ `Option ]
typeoptgroup_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Hidden
| `Id
| `Label
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeoption_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Hidden
| `Id
| `Label
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Selected
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Text_Value
| `Title
| `User_data
| `Value
| `XML_lang
| `XMLns ]
typeselectoption =
[ `Option ]
typeoption_content_fun =
[ `PCDATA ]
typeoption_content =
[ `PCDATA ]
typekeygen =
[ `Keygen ]
typekeygen_content =
notag
typekeygen_content_fun =
notag
typekeygen_attrib =
[ `Accesskey
| `Aria
| `Autofcus
| `Challenge
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Form
| `Hidden
| `Id
| `Keytype
| `Lang
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeprogress =
[ `Progress ]
typeprogress_content =
phrasing_without_progress
typeprogress_content_fun =
phrasing_without_progress
typeprogress_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Float_Value
| `Form
| `Hidden
| `Id
| `Lang
| `Max
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typemeter =
[ `Meter ]
typemeter_content =
phrasing_without_meter
typemeter_content_fun =
phrasing_without_meter
typemeter_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Float_Value
| `Form
| `Hidden
| `High
| `Id
| `Lang
| `Low
| `Max
| `Min
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Optimum
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typeoutput_elt =
[ `Output ]
typeoutput_elt_content =
phrasing
typeoutput_elt_content_fun =
phrasing
typeoutput_elt_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Form
| `Hidden
| `Id
| `Lang
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Output_for
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typedetails =
[ `Details ]
typedetails_content =
flow5
typedetails_content_fun =
flow5
typedetails_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Open
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typesummary =
[ `Summary ]
typesummary_content =
phrasing
typesummary_content_fun =
phrasing
typesummary_attrib =
common
typecommand =
[ `Command ]
typecommand_content =
notag
typecommand_content_fun =
notag
typecommand_attrib =
[ `Accesskey
| `Aria
| `Checked
| `Class
| `Command_Type
| `Contenteditable
| `Contextmenu
| `Dir
| `Disabled
| `Draggable
| `Hidden
| `Icon
| `Id
| `Lang
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Radiogroup
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
[ `Menu ]
= notag
= notag
= [ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Label
| `Lang
| `Menu_Type
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
= typenoscript =
[ `Noscript of flow5_without_noscript ]
typenoscript_content =
flow5_without_noscript
typenoscript_content_fun =
flow5_without_noscript
typenoscript_attrib =
common
typemeta =
[ `Meta ]
typemeta_content =
notag
typemeta_content_fun =
notag
typemeta_attrib =
[ `Accesskey
| `Aria
| `Charset
| `Class
| `Content
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Http_equiv
| `Id
| `Lang
| `Name
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Property
| `Role
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typestyle =
[ `Style ]
typestyle_content =
[ `PCDATA ]
typestyle_content_fun =
[ `PCDATA ]
typestyle_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `Media
| `Mime_type
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Scoped
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typescript =
[ `Script ]
typescript_attrib =
[ `Accesskey
| `Aria
| `Async
| `Charset
| `Class
| `Contenteditable
| `Contextmenu
| `Defer
| `Dir
| `Draggable
| `Hidden
| `Id
| `Lang
| `Mime_type
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Role
| `Spellcheck
| `Src
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typescript_content =
[ `PCDATA ]
typescript_content_fun =
[ `PCDATA ]
typelink =
[ `Link ]
typelink_content =
notag
typelink_content_fun =
notag
typelink_attrib =
[ `Accesskey
| `Aria
| `Class
| `Contenteditable
| `Contextmenu
| `Dir
| `Draggable
| `Hidden
| `Href
| `Hreflang
| `Id
| `Lang
| `Media
| `Mime_type
| `OnAbort
| `OnBlur
| `OnCanPlay
| `OnCanPlayThrough
| `OnChange
| `OnClick
| `OnContextMenu
| `OnDblClick
| `OnDrag
| `OnDragEnd
| `OnDragEnter
| `OnDragLeave
| `OnDragOver
| `OnDragStart
| `OnDrop
| `OnDurationChange
| `OnEmptied
| `OnEnded
| `OnError
| `OnFocus
| `OnFormChange
| `OnFormInput
| `OnInput
| `OnInvalid
| `OnKeyDown
| `OnKeyPress
| `OnKeyUp
| `OnLoad
| `OnLoadStart
| `OnLoadedData
| `OnLoadedMetaData
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnMouseWheel
| `OnPause
| `OnPlay
| `OnPlaying
| `OnProgress
| `OnRateChange
| `OnReadyStateChange
| `OnScroll
| `OnSeeked
| `OnSeeking
| `OnSelect
| `OnShow
| `OnStalled
| `OnSubmit
| `OnSuspend
| `OnTimeUpdate
| `OnTouchCancel
| `OnTouchEnd
| `OnTouchMove
| `OnTouchStart
| `OnVolumeChange
| `OnWaiting
| `Rel
| `Role
| `Sizes
| `Spellcheck
| `Style_Attr
| `Tabindex
| `Title
| `User_data
| `XML_lang
| `XMLns ]
typebig_variant =
[ `All
| `Anonymous
| `Async
| `Audio
| `Auto
| `Autofocus
| `Autoplay
| `Char
| `Checkbox
| `Checked
| `Circle
| `Col
| `Colgroup
| `Cols
| `Command
| `Context
| `Controls
| `Default
| `Defer
| `Disabled
| `Formnovalidate
| `Full_width_latin
| `Get
| `Groups
| `Hard
| `Hidden
| `Ismap
| `Justify
| `Kana
| `Katakana
| `Latin
| `Latin_name
| `Latin_prose
| `Left
| `Loop
| `Ltr
| `Metadata
| `Multiple
| `Muted
| `No
| `None
| `Novalidate
| `Numeric
| `One
| `Open
| `Poly
| `Post
| `Preserve
| `Pubdate
| `Radio
| `ReadOnly
| `Rect
| `Required
| `Reversed
| `Right
| `Row
| `Rowgroup
| `Rows
| `Rtl
| `Scoped
| `Seamless
| `Selected
| `Soft
| `Tel
| `Toolbar
| `Url
| `Use_credentials
| `Verbatim
| `W3_org_1999_xhtml
| `Yes
| `Zero ]
typesandbox_token =
[ `Allow_forms
| `Allow_pointer_lock
| `Allow_popups
| `Allow_same_origin
| `Allow_script
| `Allow_top_navigation ]
typeinput_type =
[ `Button
| `Checkbox
| `Color
| `Date
| `Datetime
| `Datetime_local
| `File
| `Hidden
| `Image
| `Month
| `Number
| `Password
| `Radio
| `Range
| `Reset
| `Search
| `Submit
| `Tel
| `Text
| `Time
| `Url
| `Week ]