SGML

HTML200129 DTD Reference

<!--
    SGML DTD for parsing the HTML5 markup language
    as specified in WHATWG HTML Review Draft published 29 January 2020
    (<https://html.spec.whatwg.org/review-drafts/2020-01/>)
    endorsed by W3C as recommendation on 28 January 2021
    using the sgmljs.net SGML system

    This DTD was prepared from WHATWG materials but is not endorsed
    by WHATWG or W3C.

    The HTML5 specification imposes additional syntactic constraints
    that cannot be expressed by DTDs, including, but not limited to:

    - attribute defaults
    - individual element content model rules as noticed by the text
      "Not all model constraints are represented in this declaration"

    See http://sgmljs.net/docs/whatwg-html200128rd.html for details
    including IMPORTANT SECURITY NOTES.

    The HTML syntax this DTD is attempting to represent is
    following the markup language described at

	https://html.spec.whatwg.org/review-drafts/2020-01/

    but there is ABSOLUTELY NO GUARANTEE OR WARRANTY of
    any kind that the targetted HTML syntax version is
    represented completely or correctly, nor of suitability
    for any purpose at all.

    Permission to use for any purpose is granted, provided
    this notice is left intact, and changes are marked clearly. -->


<!--============ Preamble ============-->

<!-- conditional declaration of %URI with either attribute data
     specification (WebSGML) or plain CDATA declared value -->

<!ENTITY % if_uri_data_spec_attr "INCLUDE">
<![ %if_uri_data_spec_attr [
	<!NOTATION uri
		PUBLIC "+//IDN www.w3c.org/TR/html5//NOTATION HTML Form Input Types//EN">
	<!ATTLIST #NOTATION uri type (url) #FIXED url>
  <!ENTITY         %                 URI               "DATA             uri">             
	<!ENTITY % no_uri_data_spec_attr "IGNORE">
]]>
<!ENTITY % no_uri_data_spec_attr "INCLUDE">
<![ %no_uri_data_spec_attr [
	<!ENTITY % URI "CDATA">
]]>

<!-- conditional declaration of %Datetime with either attribute data
     specification (WebSGML) or plain CDATA declared value -->

<!ENTITY % if_datetime_data_spec_attr "INCLUDE">
<![ %if_datetime_data_spec_attr [
	<!NOTATION datetime
		PUBLIC "+//IDN www.w3c.org/TR/html5//NOTATION HTML Form Input Types//EN">
	<!ATTLIST #NOTATION datetime
  type             (text)            #FIXED            text              
  pattern          CDATA             #FIXED            "^(\d\d\d\d-\d\d(-\d\d([T\s]\d\d:\d\d(:\d\d(\.\d+)?)?)?)?(Z|([+-]\d\d:?\d\d)?))|(\d\d-\d\d)|(\d\d:\d\d(:\d\d(\.\d\d(\.\d+)?)?)?)|([+-]\d\d:?\d\d)|(\d+(-W\d+)?)|(PT\d+H\d+M\d+S)|(\d+h +\d+m             +\d+s)$">         
	<!ENTITY % Datetime "DATA datetime">
	<!ENTITY % no_datetime_data_spec_attr "IGNORE">
]]>
<!ENTITY % no_datetime_data_spec_attr "INCLUDE">
<![ %no_datetime_data_spec_attr [
	<!ENTITY % Datetime "CDATA">
]]>

<!-- conditional import of ARIA attributes
     (see notes on SVG and MathML for importing);
     this is using the current published ARIA attributes DTD
     as of WAI-ARIA 1.1 (https:/www.w3.org/TR/wai-aria/)
     normatively referenced by the HTML5.2 specification -->

<!ENTITY % if_aria "IGNORE">
<![ %if_aria; [
	<!ENTITY % no_aria "IGNORE">
	<!ENTITY % if_aria_defaults "IGNORE">
	<!ENTITY % ariamod
		-- PUBLIC "-//W3C//ENTITIES XHTML ARIA Attributes 1.0//EN" --
		SYSTEM "aria/aria-attributes-1-with-customizable-defaults.mod">
		%ariamod;
	<!ENTITY % xhtml-role.mod
		-- PUBLIC "-//W3C//ENTITIES XHTML Role Attribute Qnames 1.0//EN" --
		SYSTEM "aria/xhtml-role-qname-1.mod">
		%xhtml-role.mod;
	<!ENTITY % ariaattrs "%ARIA.attrib; %xhtml-role.attrs.qname;">
]]>
<!ENTITY % no_aria "INCLUDE">
<![ %no_aria; [
	<!ENTITY % ariaattrs "">
]]>


<!--========== Element categories ==========-->
<!--(elements can be contained in more than one category, or none at all)-->

<!-- Metadata content (section 3.2.5.2.1). -->
<!ENTITY % metadata "base|link|meta|noscript|script|style|template|title">

<!-- Flow content (section 3.2.5.2.2).
     Note: the script element is not included in this namegroup. -->
<!ENTITY % flow "a|abbr|address|area|article|aside|audio|b|bdi|bdo|blockquote|br|button|canvas|cite|code|data|datalist|del|details|dfn|dialog|div|dl|em|embed|fieldset|figure|footer|form|h1|h2|h3|h4|h5|h6|header|hgroup|hr|i|iframe|img|input|ins|kbd|label|link|main|map|mark|math|meta|meter|nav|noscript|object|ol|output|p|picture|pre|progress|q|ruby|s|samp|section|select|slot|small|span|strong|sub|sup|svg|table|template|textarea|time|u|ul|var|video|wbr|keygen|menu">

<!-- Flow content that is not also phrasing content. -->
<!ENTITY % flow_only "address|article|aside|blockquote|details|dialog|div|dl|fieldset|figure|footer|form|h1|h2|h3|h4|h5|h6|header|hgroup|hr|main|nav|ol|p|pre|section|style|table|ul|menu">

<!-- Sectioning content (section 3.2.5.2.3). -->
<!ENTITY % sectioning "article|aside|nav|section">

<!-- Heading content (section 3.2.5.2.4). -->
<!ENTITY % heading "h1|h2|h3|h4|h5|h6|hgroup">

<!-- Phrasing content (section 3.2.5.2.5).
     Note: the script element is not included in this namegroup. -->
<!ENTITY % phrasing "a|abbr|area|audio|b|bdi|bdo|br|button|canvas|cite|code|data|datalist|del|dfn|em|embed|i|iframe|img|input|ins|kbd|label|link|map|mark|math|meta|meter|noscript|object|output|picture|progress|q|ruby|s|samp|select|slot|small|span|strong|sub|sup|svg|template|textarea|time|u|var|video|wbr|keygen">

<!-- Embedded content (section 3.2.5.2.6). -->
<!ENTITY % embedded "audio|canvas|embed|iframe|img|math|object|picture|svg|video">

<!-- Interactive content (section 3.2.5.2.7). -->
<!ENTITY % interactive "a|audio|button|details|embed|iframe|img|input|label|object|select|textarea|video|keygen">

<!-- Script-supporting elements (section 3.2.5.2.9). -->
<!ENTITY % scripting "script|template">

<!-- Utility parameter entity containing all HTML elements. -->
<!ENTITY % HTML.all "html|head|title|base|link|meta|style|body|article|section|nav|aside|h1|h2|h3|h4|h5|h6|header|footer|p|address|hr|pre|blockquote|ol|ul|li|dl|dt|dd|figure|figcaption|main|div|a|em|strong|small|s|cite|q|dfn|abbr|ruby|rt|rp|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|bdi|bdo|span|br|wbr|ins|del|picture|source|img|iframe|embed|object|param|video|audio|track|map|area|table|caption|colgroup|col|tbody|thead|tfoot|tr|td|th|form|label|input|button|select|datalist|optgroup|option|textarea|output|progress|meter|fieldset|legend|details|summary|dialog|script|noscript|template|canvas|keygen|menu|menuitem|hgroup|slot">

<!ENTITY % all "%HTML.all;">


<!--========== Global attributes ==========-->

<!-- Event handler content attributes (section 3.2.6) -->
<!ENTITY % eventhandlerattrs
 "onabort          CDATA             #IMPLIED          
  onauxclick       CDATA             #IMPLIED          
  onblur           CDATA             #IMPLIED          
  oncancel         CDATA             #IMPLIED          
  oncanplay        CDATA             #IMPLIED          
  oncanplaythrough CDATA             #IMPLIED          
  onchange         CDATA             #IMPLIED          
  onclick          CDATA             #IMPLIED          
  onclose          CDATA             #IMPLIED          
  oncontextmenu    CDATA             #IMPLIED          
  oncopy           CDATA             #IMPLIED          
  oncuechange      CDATA             #IMPLIED          
  oncut            CDATA             #IMPLIED          
  ondblclick       CDATA             #IMPLIED          
  ondrag           CDATA             #IMPLIED          
  ondragend        CDATA             #IMPLIED          
  ondragenter      CDATA             #IMPLIED          
  ondragexit       CDATA             #IMPLIED          
  ondragleave      CDATA             #IMPLIED          
  ondragover       CDATA             #IMPLIED          
  ondragstart      CDATA             #IMPLIED          
  ondrop           CDATA             #IMPLIED          
  ondurationchange CDATA             #IMPLIED          
  onemptied        CDATA             #IMPLIED          
  onended          CDATA             #IMPLIED          
  onerror          CDATA             #IMPLIED          
  onfocus          CDATA             #IMPLIED          
  onformdata       CDATA             #IMPLIED          
  oninput          CDATA             #IMPLIED          
  oninvalid        CDATA             #IMPLIED          
  onkeydown        CDATA             #IMPLIED          
  onkeypress       CDATA             #IMPLIED          
  onkeyup          CDATA             #IMPLIED          
  onload           CDATA             #IMPLIED          
  onloadeddata     CDATA             #IMPLIED          
  onloadedmetadata CDATA             #IMPLIED          
  onloadstart      CDATA             #IMPLIED          
  onmousedown      CDATA             #IMPLIED          
  onmouseenter     CDATA             #IMPLIED          
  onmouseleave     CDATA             #IMPLIED          
  onmousemove      CDATA             #IMPLIED          
  onmouseout       CDATA             #IMPLIED          
  onmouseover      CDATA             #IMPLIED          
  onmouseup        CDATA             #IMPLIED          
  onwheel          CDATA             #IMPLIED          
  onpaste          CDATA             #IMPLIED          
  onpause          CDATA             #IMPLIED          
  onplay           CDATA             #IMPLIED          
  onplaying        CDATA             #IMPLIED          
  onprogress       CDATA             #IMPLIED          
  onratechange     CDATA             #IMPLIED          
  onreset          CDATA             #IMPLIED          
  onresize         CDATA             #IMPLIED          
  onscroll         CDATA             #IMPLIED          
  onsecuritypolicyviolationCDATA             #IMPLIED          
  onseeked         CDATA             #IMPLIED          
  onseeking        CDATA             #IMPLIED          
  onselect         CDATA             #IMPLIED          
  onslotchange     CDATA             #IMPLIED          
  onstalled        CDATA             #IMPLIED          
  onsubmit         CDATA             #IMPLIED          
  onsuspend        CDATA             #IMPLIED          
  ontimeupdate     CDATA             #IMPLIED          
  ontoggle         CDATA             #IMPLIED          
  onvolumechange   CDATA             #IMPLIED          
  onwaiting        CDATA             #IMPLIED">        

<!-- Attributes common to all HTML elements (section 3.2.6, 6.6.3, 6.6.7) -->
<!ENTITY % globalattrs
 "accesskey        NMTOKENS          #IMPLIED          
  autocapitalize   (off|none|on|sentences|words|characters) #IMPLIED          
  autofocus        (autofocus)       #IMPLIED          
  class            NMTOKENS          #IMPLIED          
  contenteditable  (true|false)      #IMPLIED          
  dir              (ltr|rtl|auto)    #IMPLIED          
  draggable        (true|false)      #IMPLIED          
  enterkeyhint     (enter|done|go|next|previous|search|send) #IMPLIED          
  hidden           (hidden)          #IMPLIED          
  inputmode        (none|text|tel|url|email|numeric|decimal|search) #IMPLIED          
  id               ID                #IMPLIED          
  is               NAME              #IMPLIED          
  itemid           %URI              #IMPLIED          
  itemprop         CDATA             #IMPLIED          
  itemref          CDATA             #IMPLIED          
  itemscope        (itemscope)       #IMPLIED          
  itemtype         CDATA             #IMPLIED          
  lang             NMTOKEN           #IMPLIED          
  slot             CDATA             #IMPLIED          
  spellcheck       (true|false)      #IMPLIED          
  style            CDATA             #IMPLIED          
  tabindex         NUMBER            #IMPLIED          
  title            CDATA             #IMPLIED          
  translate        (yes|no)          #IMPLIED          
  nonce            CDATA             #IMPLIED">        

<!-- Body event handler content attributes (section 4.3.1) -->
<!ENTITY % bodyeventhandlerattrs
 "onafterprint     CDATA             #IMPLIED          
  onbeforeprint    CDATA             #IMPLIED          
  onbeforeunload   CDATA             #IMPLIED          
  onhashchange     CDATA             #IMPLIED          
  onlanguagechange CDATA             #IMPLIED          
  onmessage        CDATA             #IMPLIED          
  onmessageerror   CDATA             #IMPLIED          
  onoffline        CDATA             #IMPLIED          
  ononline         CDATA             #IMPLIED          
  onpagehide       CDATA             #IMPLIED          
  onpageshow       CDATA             #IMPLIED          
  onpopstate       CDATA             #IMPLIED          
  onrejectionhandledCDATA             #IMPLIED          
  onstorage        CDATA             #IMPLIED          
  onunhandledrejectionCDATA             #IMPLIED          
  onunload         CDATA             #IMPLIED">        

<!-- Parameter entity containing common attributes of all HTML elements 
     for reference in individual ATTLIST declarations -->
<!ENTITY % extensionattrs "%globalattrs; %eventhandlerattrs; %ariaattrs;">


<!--============ Imports ============-->

<!-- import entity set for HTML predefined entities
     (unless no_entities has value "INCLUDE")  -->

<!ENTITY % no_entities "INCLUDE">
<![ %no_entities; [
	<!ENTITY % if_entities "IGNORE">
]]>
<!ENTITY % if_entities "INCLUDE">
<![ %if_entities; [
	<!ENTITY % htmlmathml-f
		PUBLIC "-//W3C//ENTITIES HTML MathML Set//EN//XML"
		"http://www.w3.org/2003/entities/2007/htmlmathml-f.ent">
	%htmlmathml-f;
]]>

<!-- conditional import of the SVG and MathML DTDs;
     a declaration for the svg and math elements
     as having declared content ANY will
     be included if the if_svg and if_mathml parameter,
     resp., are undeclared; set if_svg and/or if_mathml
     to INCLUDE as invocation parameter to include the
     respective DTDs -->

<!ENTITY % if_svg "IGNORE">
<![ %if_svg; [
	<!ENTITY % no_svg "IGNORE">

	<!-- preempt declaration of the svg element to allow
	     or custom declaration with script inclusion later on -->
	<!ENTITY % SVG.svg.element "IGNORE">

	<!-- SVG DTD customization to include vector-effect, tabindex,
	     and aria-attributes as in previous HTML 5.x DTDs, plus
	     addtional attributes as discussed in the release notes -->
	<!ENTITY % SVG.External.attrib
		"vector-effect (non-scaling-stroke) #IMPLIED">
	<!ENTITY % SVG.Core.extra.attrib
	        "--lang CDATA #IMPLIED--
		 space (preserve|default) #IMPLIED
		 tabindex NUMBER #IMPLIED
		 nonce CDATA #IMPLIED
	         %ariaattrs;">

	<!-- SVG DTD customization to exclude declaration of the
	     style, a, and script elements (which will clash with same-named
	     HTML attributes) -->
	<!ENTITY % SVG.style.element "IGNORE">
	<!ENTITY % SVG.style.attlist "IGNORE">
	<!ENTITY % SVG.a.element "IGNORE">
	<!ENTITY % SVG.a.attlist "IGNORE">
	<!ENTITY % SVG.script.element "IGNORE">
	<!ENTITY % SVG.script.attlist "IGNORE">

	<!-- also prevent HTML and generic SVG DTDs declaring attributes
	     for title (for custom attribute list declaration below) -->
	<!ENTITY % SVG.title.attlist "IGNORE">
	<!ENTITY % HTML.title.attlist "IGNORE">

	<!-- also prevent declaration of attributes for elements
	     replaced by custom declarations -->
	<!ENTITY % SVG.feComposite.attlist "IGNORE">
	<!ENTITY % SVG.feBlend.attlist "IGNORE">
	<!ENTITY % SVG.symbol.attlist "IGNORE">

	<!-- preempt FilterPrimitive.extra.class to add feDropShadow -->
	<!ENTITY % SVG.FilterPrimitive.extra.class " | feDropShadow">

	<!-- customize foreignObject and title content -->
	<!ENTITY % SVG.foreignObject.extra.content "|%flow;">
	<!ENTITY % HTML.title.element "IGNORE">
	<!ENTITY % SVG.title.extra.content "|%phrasing;">

	<!ENTITY % svgdtd
         SYSTEM "svg/svg11.dtd">
	%svgdtd;

	<!ENTITY % SVG.svg.content
		"( %SVG.Description.class; | %SVG.Animation.class; %SVG.Structure.class;
		   %SVG.Conditional.class; %SVG.Image.class; %SVG.Style.class;
		   %SVG.Shape.class; %SVG.Text.class; %SVG.Marker.class;
		   %SVG.ColorProfile.class; %SVG.Gradient.class; %SVG.Pattern.class;
		   %SVG.Clip.class; %SVG.Mask.class; %SVG.Filter.class; %SVG.Cursor.class;
		   %SVG.Hyperlink.class; %SVG.View.class; %SVG.Script.class;
		   %SVG.Font.class; %SVG.Extensibility.class; %SVG.svg.extra.content; )*">
	<!ELEMENT %SVG.svg.qname; %SVG.svg.content; +(script)>

	<!ATTLIST %SVG.title.qname;
  --%SVG.Core.attrib;--
  %globalattrs;>   

	<!-- declare of extra feDropShadow element/attlist -->
	<!ELEMENT feDropShadow (animate, set)*>

	<!ATTLIST feDropShadow
  %SVG.Core.attrib;
  %SVG.Style.attrib;
  %SVG.Presentation.attrib;
  %SVG.FilterPrimitive.attrib;
  stdDeviation     %NumberOptionalNumber.datatype; #IMPLIED          
  dx               %Number.datatype; #IMPLIED          
  dy               %Number.datatype; #IMPLIED>         

	<!-- declare attributes for feComposite, feBlend, and
	     symbol atttribute list declarations IGNOREd above -->
	<!ATTLIST %SVG.feComposite.qname;
  %SVG.Core.attrib;
  %SVG.Style.attrib;
  %SVG.Presentation.attrib;
  %SVG.FilterPrimitiveWithIn.attrib;
  in2              CDATA             #REQUIRED         
  operator         (over|in|out|atop|xor|arithmetic|lighter) over              
  k1               %Number.datatype; #IMPLIED          
  k2               %Number.datatype; #IMPLIED          
  k3               %Number.datatype; #IMPLIED          
  k4               %Number.datatype; #IMPLIED>         

	<!ATTLIST %SVG.feBlend.qname;
  %SVG.Core.attrib;
  %SVG.Style.attrib;
  %SVG.Presentation.attrib;
  %SVG.FilterPrimitiveWithIn.attrib;
  in2              CDATA             #REQUIRED         
  mode             (normal|multiply|screen|overlay|darken|lighten|color-dodge|color-burn|hard-light|soft-light|difference|exclusion|hue|saturation|color|luminosity) normal>           

	<!ATTLIST %SVG.symbol.qname;
  %SVG.Core.attrib;
  %SVG.Style.attrib;
  %SVG.Presentation.attrib;
  %SVG.GraphicalEvents.attrib;
  %SVG.External.attrib;
  viewBox          %ViewBoxSpec.datatype; #IMPLIED          
  preserveAspectRatio%PreserveAspectRatioSpec.datatype; 'xMidYMid         meet'             
  x                %Coordinates.datatype; #IMPLIED          
  y                %Coordinates.datatype; #IMPLIED          
  width            %Length.datatype; #IMPLIED          
  height           %Length.datatype; #IMPLIED>         

	<!-- HTML DTD customization to include the xlink:href
	     attribute on the a element and the xmlns:xlink
	     attribute on the svg element -->
	<!ENTITY % xlinkhrefattr "xlink:href CDATA #IMPLIED">
	<!ENTITY % xlinknsattr
		"xmlns:xlink CDATA #FIXED 'http://www.w3.org/1999/xlink'">

]]>
<!ENTITY % no_svg "INCLUDE">
<![ %no_svg; [
	<!ELEMENT svg - - ANY>
	<!ENTITY % xlinkhrefattr "">
	<!ENTITY % xlinknsattr "">
]]>

<!ENTITY % if_mathml "IGNORE">
<![ %if_mathml; [
	<!ENTITY % no_mathml "IGNORE">

	<!-- Preempt/misuse CommonDeprecatedAtt to inject no-namespace
	     variants of lang and space -->
	<!ENTITY % CommonDeprecatedAtt
		 "lang CDATA #IMPLIED
		  space (preserve|default) #IMPLIED
		  other CDATA #IMPLIED">

	<!-- Customization of annotation-xml content model
	     to allow for flow content -->
	<!ENTITY % annotation-xml.model "(%MathExpression;|%flow;)*">

	<!-- Customization of token element content model
	     to allow for phrasing content -->
	<!ENTITY % token.content
		"#PCDATA|%mglyph.qname;|%malignmark.qname;|%phrasing;">

	<!ENTITY % mathmldtd
		PUBLIC "-//W3C//DTD MathML 3.0//EN"
		"http://www.w3.org/Math/DTD/mathml3/mathml3.dtd">
	%mathmldtd;
]]>
<!ENTITY % no_mathml "INCLUDE">
<![ %no_mathml; [
	<!ELEMENT math - - ANY>
]]>


<!-- conditional declarations of enumerated values from external sources;
     off by default -->
<!ENTITY % if_fetch "IGNORE">
<!ENTITY % if_referrer "IGNORE">
<!ENTITY % no_fetch "INCLUDE">
<!ENTITY % no_referrer "INCLUDE">

<![ %if_fetch; [
<!-- Parameter entity containing possible value for Fetch API destinations -->
<!ENTITY % destination "(fetch|audio|audioworklet|document|embed|font|frame|iframe|image|manifest|object|paintworklet|report|script|serviceworker|sharedworker|style|track|video|webidentity|worker|xlst)">

<!-- Parameter entity containing CORS settings enumerated attribute values
     (section 2.5.4) -->
<!ENTITY % corssetting "(anonymous|use-credentials)">
]]>

<![ %no_fetch; [
<!ENTITY % destination "CDATA">
<!ENTITY % corssetting "CDATA">
]]>

<![ %if_referrer; [
<!-- Parameter entity containing referrer policy enumerated attribute values
     (section 2.5.5) -->
<!ENTITY % Referrerpolicy
  "(no-referrer-when-downgrade|same-origin|origin|strict-origin|origin-when-cross-origin|strict-origin-when-cross-origin|unsafe-url)">
]]>

<![ %no_referrer; [
<!ENTITY % Referrerpolicy "CDATA">
]]>


<!--========== The document element ==========-->

<!ENTITY % HTML.html.element "INCLUDE">
<![ %HTML.html.element [
<!-- The html element (section 4.1.1).
     Content: A head element followed by a body element.
     Tag omission: An html element's start tag can be omitted if the first thing
     inside the html element is not a comment. An html element's end tag can be
     omitted if the html element is not immediately followed by a comment. -->
<!ELEMENT html O O (head,body) +(script)>
]]>

<!ENTITY % HTML.html.attlist "INCLUDE">
<![ %HTML.html.attlist [
<!ATTLIST html
  %extensionattrs; 
  manifest         CDATA             #IMPLIED>         
]]>


<!--========== Document metadata ==========-->

<!ENTITY % HTML.head.element "INCLUDE">
<![ %HTML.head.element [
<!-- The head element (section 4.2.1).
     Content: If the document is an iframe srcdoc document or if title
     information is available from a higher-level protocol: Zero or more
     elements of metadata content, of which no more than one is a title element
     and no more than one is a base element.
     Otherwise: One or more elements of metadata content, of which exactly one
     is a title element and no more than one is a base element.
     Tag omission: A head element's start tag can be omitted if the element is
     empty, or if the first thing inside the head element is an element. A head
     element's end tag can be omitted if the head element is not immediately
     followed by ASCII whitespace or a comment.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT head O O (%metadata;)*>
]]>

<!ENTITY % HTML.head.attlist "INCLUDE">
<![ %HTML.head.attlist [
<!ATTLIST head
  %extensionattrs;>
]]>

<!ENTITY % HTML.title.element "INCLUDE">
<![ %HTML.title.element [
<!-- The title element (section 4.2.2).
     Content: Text that is not inter-element white space.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT title - - (#PCDATA)>
]]>

<!ENTITY % HTML.title.attlist "INCLUDE">
<![ %HTML.title.attlist [
<!ATTLIST title
  %extensionattrs;>
]]>

<!ENTITY % HTML.base.element "INCLUDE">
<![ %HTML.base.element [
<!-- The base element (section 4.2.3).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT base - O EMPTY>
]]>

<!ENTITY % HTML.base.attlist "INCLUDE">
<![ %HTML.base.attlist [
<!ATTLIST base
  %extensionattrs; 
  href             %URI              #IMPLIED          
  target           CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.link.element "INCLUDE">
<![ %HTML.link.element [
<!-- The link element (section 4.2.4).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT link - O EMPTY>
]]>

<!ENTITY % HTML.link.attlist "INCLUDE">
<![ %HTML.link.attlist [
<!ATTLIST link
  %extensionattrs; 
  href             %URI              #IMPLIED          
  crossorigin      %corssetting;     #IMPLIED          
  rel              NMTOKENS          #IMPLIED          
  media            CDATA             #IMPLIED          
  hreflang         CDATA             #IMPLIED          
  type             CDATA             #IMPLIED          
  referrerpolicy   CDATA             #IMPLIED          
  sizes            CDATA             #IMPLIED          
  integrity        CDATA             #IMPLIED          
  imagesrcset      CDATA             #IMPLIED          
  imagesizes       CDATA             #IMPLIED          
  as               %destination;     #IMPLIED          
  color            CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.meta.element "INCLUDE">
<![ %HTML.meta.element [
<!-- The meta element (section 4.2.5).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT meta - O EMPTY>
]]>

<!ENTITY % HTML.meta.attlist "INCLUDE">
<![ %HTML.meta.attlist [
<!ATTLIST meta
  %extensionattrs; 
  name             CDATA             #IMPLIED          
  http-equiv       (content-language|content-type|default-style|refresh|set-cookie|x-ua-compatible|content-security-policy) #IMPLIED          
  content          CDATA             #IMPLIED          
  charset          CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.style.element "INCLUDE">
<![ %HTML.style.element [
<!-- The style element (section 4.2.6).
     Content: Text that gives a conformant style sheet.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT style - - CDATA>
]]>

<!ENTITY % HTML.style.attlist "INCLUDE">
<![ %HTML.style.attlist [
<!ATTLIST style
  %extensionattrs; 
  media            CDATA             #IMPLIED          
  type             CDATA             #IMPLIED>         
]]>


<!--========== Sections ==========-->

<!ENTITY % HTML.body.element "INCLUDE">
<![ %HTML.body.element [
<!-- The body element (section 4.3.1).
     Content: Flow content.
     Tag omission: A body element's start tag can be omitted if the element is
     empty, or if the first thing inside the body element is not ASCII
     whitespace or a comment, except if the first thing inside the body element
     is a meta, link, script, style, or template element. A body element's end
     tag can be omitted if the body element is not immediately followed by a
     comment. -->
<!ELEMENT body O O (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.body.attlist "INCLUDE">
<![ %HTML.body.attlist [
<!ATTLIST body
  %extensionattrs; 
  %bodyeventhandlerattrs;>
]]>

<!ENTITY % HTML.article.element "INCLUDE">
<![ %HTML.article.element [
<!-- The article element (section 4.3.2).
     Content: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT article - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.article.attlist "INCLUDE">
<![ %HTML.article.attlist [
<!ATTLIST article
  %extensionattrs;>
]]>

<!ENTITY % HTML.section.element "INCLUDE">
<![ %HTML.section.element [
<!-- The section element (section 4.3.3).
     Content: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT section - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.section.attlist "INCLUDE">
<![ %HTML.section.attlist [
<!ATTLIST section
  %extensionattrs;>
]]>

<!ENTITY % HTML.nav.element "INCLUDE">
<![ %HTML.nav.element [
<!-- The nav element (section 4.3.4).
     Content: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT nav - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.nav.attlist "INCLUDE">
<![ %HTML.nav.attlist [
<!ATTLIST nav
  %extensionattrs;>
]]>

<!ENTITY % HTML.aside.element "INCLUDE">
<![ %HTML.aside.element [
<!-- The aside element (section 4.3.5).
     Content: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT aside - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.aside.attlist "INCLUDE">
<![ %HTML.aside.attlist [
<!ATTLIST aside
  %extensionattrs;>
]]>

<!ENTITY % HTML.h1_h2_h3_h4_h5_h6.element "INCLUDE">
<![ %HTML.h1_h2_h3_h4_h5_h6.element [
<!-- The (h1|h2|h3|h4|h5|h6) element (section 4.3.6).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT (h1|h2|h3|h4|h5|h6) - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.h1_h2_h3_h4_h5_h6.attlist "INCLUDE">
<![ %HTML.h1_h2_h3_h4_h5_h6.attlist [
<!ATTLIST (h1|h2|h3|h4|h5|h6)
  %extensionattrs;>
]]>

<!ENTITY % HTML.hgroup.element "INCLUDE">
<![ %HTML.hgroup.element [
<!-- The hgroup element (section 4.3.7).
     Content: One or more h1, h2, h3, h4, h5, h6 elements, optionally
     intermixed with script-supporting elements.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT hgroup - - (h1|h2|h3|h4|h5|h6)+ +(%scripting;)>
]]>

<!ENTITY % HTML.hgroup.attlist "INCLUDE">
<![ %HTML.hgroup.attlist [
<!ATTLIST hgroup
  %extensionattrs;>
]]>

<!ENTITY % HTML.header.element "INCLUDE">
<![ %HTML.header.element [
<!-- The header element (section 4.3.8).
     Content: Flow content, but with no header or footer element descendants.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT header - - (#PCDATA|%flow;)* -(header|footer)>
]]>

<!ENTITY % HTML.header.attlist "INCLUDE">
<![ %HTML.header.attlist [
<!ATTLIST header
  %extensionattrs;>
]]>

<!ENTITY % HTML.footer.element "INCLUDE">
<![ %HTML.footer.element [
<!-- The footer element (section 4.3.9).
     Content: Flow content, but with no header or footer element descendants.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT footer - - (#PCDATA|%flow;)* -(header|footer)>
]]>

<!ENTITY % HTML.footer.attlist "INCLUDE">
<![ %HTML.footer.attlist [
<!ATTLIST footer
  %extensionattrs;>
]]>

<!ENTITY % HTML.address.element "INCLUDE">
<![ %HTML.address.element [
<!-- The address element (section 4.3.10).
     Content: Flow content, but with no heading content descendants, no
     sectioning content descendants, and no header, footer, or address element
     descendants.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT address - - (#PCDATA|%flow;)* -(%heading;|%sectioning;|header|footer|address)>
]]>

<!ENTITY % HTML.address.attlist "INCLUDE">
<![ %HTML.address.attlist [
<!ATTLIST address
  %extensionattrs;>
]]>

<!--========== Grouping content ==========-->

<!ENTITY % HTML.p.element "INCLUDE">
<![ %HTML.p.element [
<!-- The p element (section 4.4.1).
     Content: Phrasing content.
     Tag omission: A p element's tag can be omitted if the p element is
     immediately followed by an address, article, aside, blockquote, details,
     div, dl, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5,
     h6, header, hgroup, hr, main, nav, ol, p, pre, section, table, or ul
     element, or if there is no more content in the parent element and the
     parent element is an HTML element that is not an a, audio, del, ins, map,
     noscript, or video element, or an autonomous custom element.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT p - O (#PCDATA|%phrasing;)* -(%flow_only;|figcaption)>
]]>

<!ENTITY % HTML.p.attlist "INCLUDE">
<![ %HTML.p.attlist [
<!ATTLIST p
  %extensionattrs;>
]]>

<!ENTITY % HTML.hr.element "INCLUDE">
<![ %HTML.hr.element [
<!-- The hr element (section 4.4.2).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT hr - O EMPTY>
]]>

<!ENTITY % HTML.hr.attlist "INCLUDE">
<![ %HTML.hr.attlist [
<!ATTLIST hr
  %extensionattrs;>
]]>

<!ENTITY % HTML.pre.element "INCLUDE">
<![ %HTML.pre.element [
<!-- The pre element (section 4.4.3).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT pre - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.pre.attlist "INCLUDE">
<![ %HTML.pre.attlist [
<!ATTLIST pre
  %extensionattrs;>
]]>

<!ENTITY % HTML.blockquote.element "INCLUDE">
<![ %HTML.blockquote.element [
<!-- The blockquote element (section 4.4.4).
     Content: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT blockquote - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.blockquote.attlist "INCLUDE">
<![ %HTML.blockquote.attlist [
<!ATTLIST blockquote
  %extensionattrs; 
  cite             %URI              #IMPLIED>         
]]>

<!ENTITY % HTML.ol.element "INCLUDE">
<![ %HTML.ol.element [
<!-- The ol element (section 4.4.5).
     Content: Zero or more li and script-supporting elements.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT ol - - (li)* +(%scripting;)>
]]>

<!ENTITY % HTML.ol.attlist "INCLUDE">
<![ %HTML.ol.attlist [
<!ATTLIST ol
  %extensionattrs; 
  reversed         (reversed)        #IMPLIED          
  start            NUMBER            #IMPLIED          
  type             CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.ul.element "INCLUDE">
<![ %HTML.ul.element [
<!-- The ul element (section 4.4.6).
     Content: Zero or more li and script-supporting elements.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT ul - - (li)* +(%scripting;)>
]]>

<!ENTITY % HTML.ul.attlist "INCLUDE">
<![ %HTML.ul.attlist [
<!ATTLIST ul
  %extensionattrs;>
]]>

<!ENTITY % HTML.menu.element "INCLUDE">
<![ %HTML.menu.element [
<!ELEMENT menu - - (li)* +(%scripting;)>
<!-- The menu element (section 4.4.7).
     Content: Zero or more li and script-supporting elements.
     Tag omission: Neither tag is omissible. -->
]]>

<!ENTITY % HTML.menu.attlist "INCLUDE">
<![ %HTML.menu.attlist [
<!ATTLIST menu
  %extensionattrs;>
]]>

<!ENTITY % HTML.li.element "INCLUDE">
<![ %HTML.li.element [
<!-- The li element (section 4.4.8).
     Content: Flow content.
     Tag omission: An li element's end tag can be omitted if the li element is
     immediately followed by another li element or if there is no more content
     in the parent element. -->
<!ELEMENT li - O (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.li.attlist "INCLUDE">
<![ %HTML.li.attlist [
<!ATTLIST li
  %extensionattrs; 
  value            NUMBER            #IMPLIED>         
]]>

<!ENTITY % HTML.dl.element "INCLUDE">
<![ %HTML.dl.element [
<!-- The dl element (section 4.4.9).
     Content: Either: Zero or more groups each consisting of one or more dt
     elements followed by one or more dd elements, optionally intermixed with
     script-supporting elements.
     Or: One or more div elements, optionally intermixed with script-supporting
     elements.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT dl - - ((dt+,dd+)*|div+) +(%scripting;)>
]]>

<!ENTITY % HTML.dl.attlist "INCLUDE">
<![ %HTML.dl.attlist [
<!ATTLIST dl
  %extensionattrs;>
]]>

<!ENTITY % HTML.dt.element "INCLUDE">
<![ %HTML.dt.element [
<!-- The dt element (section 4.4.10).
     Content: Flow content, but with no header, footer, sectioning content, or
     heading content descendants.
     Tag omission: A dt element's end tag can be omitted if the dt element is
     immediately followed by another dt element or a dd element. -->
<!ELEMENT dt - O (#PCDATA|%flow;)* -(%heading;|%sectioning;|header|footer)>
]]>

<!ENTITY % HTML.dt.attlist "INCLUDE">
<![ %HTML.dt.attlist [
<!ATTLIST dt
  %extensionattrs;>
]]>

<!ENTITY % HTML.dd.element "INCLUDE">
<![ %HTML.dd.element [
<!-- The dd element (section 4.4.11).
     Content: Flow content.
     Tag omission: A dd element's end tag can be omitted if the dd element is
     immediately followed by another dd element or a dt element, or if there is
     no more content in the parent element. -->
<!ELEMENT dd - O (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.dd.attlist "INCLUDE">
<![ %HTML.dd.attlist [
<!ATTLIST dd
  %extensionattrs;>
]]>

<!ENTITY % HTML.figure.element "INCLUDE">
<![ %HTML.figure.element [
<!-- The figure element (section 4.4.12).
     Content: Either: one fictaption element followed by flow content.
     Or: flow content followed by one figcaption element. Or: flow content.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT figure - - (#PCDATA|%flow;)* +(figcaption)>
]]>

<!ENTITY % HTML.figure.attlist "INCLUDE">
<![ %HTML.figure.attlist [
<!ATTLIST figure
  %extensionattrs;>
]]>

<!ENTITY % HTML.figcaption.element "INCLUDE">
<![ %HTML.figcaption.element [
<!-- The figcaption element (section 4.4.13).
     Content: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT figcaption - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.figcaption.attlist "INCLUDE">
<![ %HTML.figcaption.attlist [
<!ATTLIST figcaption
  %extensionattrs;>
]]>

<!ENTITY % HTML.main.element "INCLUDE">
<![ %HTML.main.element [
<!-- The main element (section 4.4.14).
     Content: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT main - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.main.attlist "INCLUDE">
<![ %HTML.main.attlist [
<!ATTLIST main
  %extensionattrs;>
]]>

<!ENTITY % HTML.div.element "INCLUDE">
<![ %HTML.div.element [
<!-- The div element (section 4.4.15).
     Content: If the element is a child of a dl element: one or more dt elements
     followed by one or more dd elements, optionally intermixed with
     script-supporting elements.
     If the element is not a child of a dl element: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT div - - (#PCDATA|%flow;)* -(main) +(dt|dd)>
]]>

<!ENTITY % HTML.div.attlist "INCLUDE">
<![ %HTML.div.attlist [
<!ATTLIST div
  %extensionattrs;>
]]>


<!--========== Text-level semantics ==========-->

<!ENTITY % HTML.a.element "INCLUDE">
<![ %HTML.a.element [
<!-- The a element (section 4.5.1).
     Content: Transparent, but there must be no interactive content or a element
     descendants.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT a - - ANY -(%interactive;)>
]]>

<!ENTITY % HTML.a.attlist "INCLUDE">
<![ %HTML.a.attlist [
<!ATTLIST a
  %extensionattrs; 
  %xlinkhrefattr;  
  href             %URI              #IMPLIED          
  target           CDATA             #IMPLIED          
  download         CDATA             #IMPLIED          
  rel              NMTOKENS          #IMPLIED          
  hreflang         CDATA             #IMPLIED          
  type             CDATA             #IMPLIED          
  referrerpolicy   CDATA             #IMPLIED          
  ping             CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.em.element "INCLUDE">
<![ %HTML.em.element [
<!-- The em element (section 4.5.2).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT em - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.em.attlist "INCLUDE">
<![ %HTML.em.attlist [
<!ATTLIST em
  %extensionattrs;>
]]>

<!ENTITY % HTML.strong.element "INCLUDE">
<![ %HTML.strong.element [
<!-- The strong element (section 4.5.2).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT strong - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.strong.attlist "INCLUDE">
<![ %HTML.strong.attlist [
<!ATTLIST strong
  %extensionattrs;>
]]>

<!ENTITY % HTML.small.element "INCLUDE">
<![ %HTML.small.element [
<!-- The small element (section 4.5.4).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT small - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.small.attlist "INCLUDE">
<![ %HTML.small.attlist [
<!ATTLIST small
  %extensionattrs;>
]]>

<!ENTITY % HTML.s.element "INCLUDE">
<![ %HTML.s.element [
<!-- The s element (section 4.5.5).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT s - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.s.attlist "INCLUDE">
<![ %HTML.s.attlist [
<!ATTLIST s
  %extensionattrs;>
]]>

<!ENTITY % HTML.cite.element "INCLUDE">
<![ %HTML.cite.element [
<!-- The cite element (section 4.5.6).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT cite - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.cite.attlist "INCLUDE">
<![ %HTML.cite.attlist [
<!ATTLIST cite
  %extensionattrs;>
]]>

<!ENTITY % HTML.q.element "INCLUDE">
<![ %HTML.q.element [
<!-- The q element (section 4.5.7).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT q - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.q.attlist "INCLUDE">
<![ %HTML.q.attlist [
<!ATTLIST q
  %extensionattrs; 
  cite             %URI              #IMPLIED>         
]]>

<!ENTITY % HTML.dfn.element "INCLUDE">
<![ %HTML.dfn.element [
<!-- The dfn element (section 4.5.8).
     Content: Phrasing content, but there must be no dfn element descendants.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT dfn - - (#PCDATA|%phrasing;)* -(dfn|%flow_only;)>
]]>

<!ENTITY % HTML.dfn.attlist "INCLUDE">
<![ %HTML.dfn.attlist [
<!ATTLIST dfn
  %extensionattrs;>
]]>

<!ENTITY % HTML.abbr.element "INCLUDE">
<![ %HTML.abbr.element [
<!-- The abbr element (section 4.5.9).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT abbr - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.abbr.attlist "INCLUDE">
<![ %HTML.abbr.attlist [
<!ATTLIST abbr
  %extensionattrs;>
]]>

<!ENTITY % HTML.ruby.element "INCLUDE">
<![ %HTML.ruby.element [
<!-- The ruby element (section 4.5.10).
     Content model: The content model of ruby elements consists of one or more
     of the following sequences:
     One or the other of the following:
     - Phrasing content, but with no ruby elements and with no ruby element
       descendants
     - A single ruby element that itself has no ruby element descendants
     One or the other of the following:
     - One or more rt elements
     - An rp element followed by one or more rt elements, each of which is
       itself followed by an rp element
     Tag omission: Neither tag is omissible. -->
<!ELEMENT ruby - - ((((#PCDATA|a|abbr|area|audio|b|bdi|bdo|br|button|canvas|cite|code|data|datalist|del|dfn|em|embed|i|iframe|img|input|ins|kbd|label|link|map|mark|math|meta|meter|noscript|object|output|picture|progress|q|s|samp|select|slot|small|span|strong|sub|sup|svg|template|textarea|time|u|var|video|wbr|keygen)+)|ruby),(rt|(rp,(rt,rp))))+ -(%flow_only;)>
]]>

<!ENTITY % HTML.ruby.attlist "INCLUDE">
<![ %HTML.ruby.attlist [
<!ATTLIST ruby
  %extensionattrs;>
]]>

<!ENTITY % HTML.rt.element "INCLUDE">
<![ %HTML.rt.element [
<!-- The rt element (section 4.5.11).
     Content: Phrasing content.
     Tag omission: An rt element's end tag can be omitted if the rt element is
     immediately followed by an rb, rt, rtc or rp element, or if there is no
     more content in the parent element. -->
<!ELEMENT rt - O (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.rt.attlist "INCLUDE">
<![ %HTML.rt.attlist [
<!ATTLIST rt
  %extensionattrs;>
]]>

<!ENTITY % HTML.rp.element "INCLUDE">
<![ %HTML.rp.element [
<!-- The rp element (section 4.5.12).
     Content: Phrasing content.
     Tag omission: An rp element's end tag can be omitted if the rp element is
     immediately followed by an rb, rt, rtc or rp element, or if there is no
     more content in the parent element. -->
<!ELEMENT rp - O (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.rp.attlist "INCLUDE">
<![ %HTML.rp.attlist [
<!ATTLIST rp
  %extensionattrs;>
]]>

<!ENTITY % HTML.data.element "INCLUDE">
<![ %HTML.data.element [
<!-- The data element (section 4.5.13).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT data - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.data.attlist "INCLUDE">
<![ %HTML.data.attlist [
<!ATTLIST data
  %extensionattrs; 
  value            CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.time.element "INCLUDE">
<![ %HTML.time.element [
<!-- The time element (section 4.5.14).
     Content: If the element has a datetime attribute: Phrasing content.
     Otherwise: Text.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT time - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.time.attlist "INCLUDE">
<![ %HTML.time.attlist [
<!ATTLIST time
  %extensionattrs; 
  datetime         %Datetime         #IMPLIED>         
]]>

<!ENTITY % HTML.code.element "INCLUDE">
<![ %HTML.code.element [
<!-- The code element (section 4.5.15).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT code - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.code.attlist "INCLUDE">
<![ %HTML.code.attlist [
<!ATTLIST code
  %extensionattrs;>
]]>

<!ENTITY % HTML.var.element "INCLUDE">
<![ %HTML.var.element [
<!-- The var element (section 4.5.16).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT var - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.var.attlist "INCLUDE">
<![ %HTML.var.attlist [
<!ATTLIST var
  %extensionattrs;>
]]>

<!ENTITY % HTML.samp.element "INCLUDE">
<![ %HTML.samp.element [
<!-- The samp element (section 4.5.17).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT samp - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.samp.attlist "INCLUDE">
<![ %HTML.samp.attlist [
<!ATTLIST samp
  %extensionattrs;>
]]>

<!ENTITY % HTML.kbd.element "INCLUDE">
<![ %HTML.kbd.element [
<!-- The kbd element (section 4.5.18).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT kbd - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.kbd.attlist "INCLUDE">
<![ %HTML.kbd.attlist [
<!ATTLIST kbd
  %extensionattrs;>
]]>

<!ENTITY % HTML.sub_sup.element "INCLUDE">
<![ %HTML.sub_sup.element [
<!-- The (sub|sup) element (section 4.5.19).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT (sub|sup) - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.sub_sup.attlist "INCLUDE">
<![ %HTML.sub_sup.attlist [
<!ATTLIST (sub|sup)
  %extensionattrs;>
]]>

<!ENTITY % HTML.i.element "INCLUDE">
<![ %HTML.i.element [
<!-- The i element (section 4.5.20).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT i - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.i.attlist "INCLUDE">
<![ %HTML.i.attlist [
<!ATTLIST i
  %extensionattrs;>
]]>

<!ENTITY % HTML.b.element "INCLUDE">
<![ %HTML.b.element [
<!-- The b element (section 4.5.21).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT b - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.b.attlist "INCLUDE">
<![ %HTML.b.attlist [
<!ATTLIST b
  %extensionattrs;>
]]>

<!ENTITY % HTML.u.element "INCLUDE">
<![ %HTML.u.element [
<!-- The u element (section 4.5.22).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT u - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.u.attlist "INCLUDE">
<![ %HTML.u.attlist [
<!ATTLIST u
  %extensionattrs;>
]]>

<!ENTITY % HTML.mark.element "INCLUDE">
<![ %HTML.mark.element [
<!-- The mark element (section 4.5.23).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT mark - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.mark.attlist "INCLUDE">
<![ %HTML.mark.attlist [
<!ATTLIST mark
  %extensionattrs;>
]]>

<!ENTITY % HTML.bdi.element "INCLUDE">
<![ %HTML.bdi.element [
<!-- The bdi element (section 4.5.24).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT bdi - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.bdi.attlist "INCLUDE">
<![ %HTML.bdi.attlist [
<!ATTLIST bdi
  %extensionattrs;>
]]>

<!ENTITY % HTML.bdo.element "INCLUDE">
<![ %HTML.bdo.element [
<!-- The bdo element (section 4.5.25).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT bdo - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.bdo.attlist "INCLUDE">
<![ %HTML.bdo.attlist [
<!ATTLIST bdo
  %extensionattrs;>
]]>

<!ENTITY % HTML.span.element "INCLUDE">
<![ %HTML.span.element [
<!-- The span element (section 4.5.26).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT span - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.span.attlist "INCLUDE">
<![ %HTML.span.attlist [
<!ATTLIST span
  %extensionattrs;>
]]>

<!ENTITY % HTML.br.element "INCLUDE">
<![ %HTML.br.element [
<!-- The br element (section 4.5.27).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT br - O EMPTY>
]]>

<!ENTITY % HTML.br.attlist "INCLUDE">
<![ %HTML.br.attlist [
<!ATTLIST br
  %extensionattrs;>
]]>

<!ENTITY % HTML.wbr.element "INCLUDE">
<![ %HTML.wbr.element [
<!-- The wbr element (section 4.5.28).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT wbr - O EMPTY>
]]>

<!ENTITY % HTML.wbr.attlist "INCLUDE">
<![ %HTML.wbr.attlist [
<!ATTLIST wbr
  %extensionattrs;>
]]>


<!--========== Edits ==========-->

<!ENTITY % HTML.ins.element "INCLUDE">
<![ %HTML.ins.element [
<!-- The ins element (section 4.7.1).
     Content: Transparent.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT ins - - ANY>
]]>

<!ENTITY % HTML.ins.attlist "INCLUDE">
<![ %HTML.ins.attlist [
<!ATTLIST ins
  %extensionattrs; 
  cite             %URI              #IMPLIED          
  datetime         %Datetime         #IMPLIED>         
]]>

<!ENTITY % HTML.del.element "INCLUDE">
<![ %HTML.del.element [
<!-- The del element (section 4.7.2).
     Content: Transparent.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT del - - ANY>
]]>

<!ENTITY % HTML.del.attlist "INCLUDE">
<![ %HTML.del.attlist [
<!ATTLIST del
  %extensionattrs; 
  cite             %URI              #IMPLIED          
  datetime         %Datetime         #IMPLIED>         
]]>


<!--========== Embedded content ==========-->

<!ENTITY % HTML.picture.element "INCLUDE">
<![ %HTML.picture.element [
<!-- The picture element (section 4.8.1).
     Content: Zero or more source elements, followed by one img element,
     optionally intermixed with script-supporting elements.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT picture - - (source?,img) +(%scripting;)>
]]>

<!ENTITY % HTML.picture.attlist "INCLUDE">
<![ %HTML.picture.attlist [
<!ATTLIST picture
  %extensionattrs;>
]]>

<!ENTITY % HTML.source.element "INCLUDE">
<![ %HTML.source.element [
<!-- The source element (section 4.8.2).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT source - O EMPTY>
]]>

<!ENTITY % HTML.source.attlist "INCLUDE">
<![ %HTML.source.attlist [
<!ATTLIST source
  %extensionattrs; 
  src              %URI              #IMPLIED          
  type             CDATA             #IMPLIED          
  srcset           CDATA             #IMPLIED          
  sizes            CDATA             #IMPLIED          
  media            CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.img.element "INCLUDE">
<![ %HTML.img.element [
<!-- The img element (section 4.8.3).
     Content: Nothing
     Tag omission: No end tag. -->
<!ELEMENT img - O EMPTY>
]]>

<!ENTITY % HTML.img.attlist "INCLUDE">
<![ %HTML.img.attlist [
<!ATTLIST img
  %extensionattrs; 
  alt              CDATA             #IMPLIED          
  src              %URI              #IMPLIED          
  srcset           CDATA             #IMPLIED          
  sizes            CDATA             #IMPLIED          
  crossorigin      %corssetting;     #IMPLIED          
  usemap           CDATA             #IMPLIED          
  ismap            (ismap)           #IMPLIED          
  width            NUMBER            #IMPLIED          
  height           NUMBER            #IMPLIED          
  referrerpolicy   CDATA             #IMPLIED          
  decoding         CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.iframe.element "INCLUDE">
<![ %HTML.iframe.element [
<!-- The iframe element (section 4.8.5).
     Content: Nothing. However, to preserve existing documents, fallback
     content specified as child content rather than as value of the srcdoc
     attribute is accepted.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT iframe - - ANY -(head|body)>
]]>

<!ENTITY % HTML.iframe.attlist "INCLUDE">
<![ %HTML.iframe.attlist [
<!ATTLIST iframe
  %extensionattrs; 
  src              %URI              #IMPLIED          
  srcdoc           CDATA             #IMPLIED          
  name             CDATA             #IMPLIED          
  sandbox          NMTOKENS          #IMPLIED          
  allowfullscreen  (allowfullscreen) #IMPLIED          
  allowpaymentrequest(allowpaymentrequest) #IMPLIED          
  width            NUMBER            #IMPLIED          
  height           NUMBER            #IMPLIED          
  referrerpolicy   CDATA             #IMPLIED          
  loading          (eager|lazy)      #IMPLIED>         
]]>

<!ENTITY % HTML.embed.element "INCLUDE">
<![ %HTML.embed.element [
<!-- The embed element (section 4.8.6).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT embed - O EMPTY>
]]>

<!ENTITY % HTML.embed.attlist "INCLUDE">
<![ %HTML.embed.attlist [
<!ATTLIST embed
  %extensionattrs; 
  src              %URI              #IMPLIED          
  type             CDATA             #IMPLIED          
  width            NUMBER            #IMPLIED          
  height           NUMBER            #IMPLIED>         
]]>

<!ENTITY % HTML.object.element "INCLUDE">
<![ %HTML.object.element [
<!-- The object element (section 4.8.7).
     Content: Zero or more param elements, then, transparent.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT object - - ANY>
]]>

<!ENTITY % HTML.object.attlist "INCLUDE">
<![ %HTML.object.attlist [
<!ATTLIST object
  %extensionattrs; 
  data             %URI              #IMPLIED          
  type             CDATA             #IMPLIED          
  name             CDATA             #IMPLIED          
  usemap           CDATA             #IMPLIED          
  form             IDREF             #IMPLIED          
  width            NUMBER            #IMPLIED          
  height           NUMBER            #IMPLIED>         
]]>

<!ENTITY % HTML.param.element "INCLUDE">
<![ %HTML.param.element [
<!-- The param element (section 4.8.8).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT param - O EMPTY>
]]>

<!ENTITY % HTML.param.attlist "INCLUDE">
<![ %HTML.param.attlist [
<!ATTLIST param
  %extensionattrs; 
  name             CDATA             #IMPLIED          
  value            CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.video.element "INCLUDE">
<![ %HTML.video.element [
<!-- The video element (section 4.8.9).
     Content: If the element has a src attribute: zero or more track elements,
     then transparent, but with no media element descendants.
     If the element does not have a src attribute: zero or more source elements,
     then zero or more track elements, then transparent, but with no media
     element descendants.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT video - - ((track*|source*),(#PCDATA|%flow;)*) -(media)>
]]>

<!ENTITY % HTML.video.attlist "INCLUDE">
<![ %HTML.video.attlist [
<!ATTLIST video
  %extensionattrs; 
  src              %URI              #IMPLIED          
  crossorigin      %corssetting;     #IMPLIED          
  poster           %URI              #IMPLIED          
  preload          (none|metadata|auto) #IMPLIED          
  autoplay         (autoplay)        #IMPLIED          
  playsinline      (playsinline)     #IMPLIED          
  loop             (loop)            #IMPLIED          
  muted            (muted)           #IMPLIED          
  controls         (controls)        #IMPLIED          
  width            NUMBER            #IMPLIED          
  height           NUMBER            #IMPLIED>         
]]>

<!ENTITY % HTML.audio.element "INCLUDE">
<![ %HTML.audio.element [
<!-- The audio element (section 4.8.10).
     Content: If the element has a src attribute: zero or more track elements,
     then transparent, but with no media element descendants.
     If the element does not have a src attribute: zero or more source elements,
     then zero or more track elements, then transparent, but with no media
     element descendants.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT audio - - ((track*|source*),(#PCDATA|%flow;)*) -(media)>
]]>

<!ENTITY % HTML.audio.attlist "INCLUDE">
<![ %HTML.audio.attlist [
<!ATTLIST audio
  %extensionattrs; 
  src              %URI              #IMPLIED          
  crossorigin      %corssetting;     #IMPLIED          
  preload          (none|metadata|auto) #IMPLIED          
  autoplay         (autoplay)        #IMPLIED          
  loop             (loop)            #IMPLIED          
  muted            (muted)           #IMPLIED          
  controls         (controls)        #IMPLIED>         
]]>

<!ENTITY % HTML.track.element "INCLUDE">
<![ %HTML.track.element [
<!-- The track element (section 4.8.11).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT track - O EMPTY>
]]>

<!ENTITY % HTML.track.attlist "INCLUDE">
<![ %HTML.track.attlist [
<!ATTLIST track
  %extensionattrs; 
  kind             (subtitles|captions|descriptions|chapters|metadata) #IMPLIED          
  src              %URI              #IMPLIED          
  srclang          CDATA             #IMPLIED          
  label            CDATA             #IMPLIED          
  default          (default)         #IMPLIED>         
]]>

<!ENTITY % HTML.map.element "INCLUDE">
<![ %HTML.map.element [
<!-- The map element (section 4.8.13).
     Content: Transparent.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT map - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.map.attlist "INCLUDE">
<![ %HTML.map.attlist [
<!ATTLIST map
  %extensionattrs; 
  name             CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.area.element "INCLUDE">
<![ %HTML.area.element [
<!-- The area element (section 4.8.14).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT area - O EMPTY>
]]>

<!ENTITY % HTML.area.attlist "INCLUDE">
<![ %HTML.area.attlist [
<!ATTLIST area
  %extensionattrs; 
  alt              CDATA             #IMPLIED          
  coords           CDATA             #IMPLIED          
  download         CDATA             #IMPLIED          
  href             %URI              #IMPLIED          
  rel              NMTOKENS          #IMPLIED          
  shape            (circle|circ|default|poly|polygon|rect|rectangle) #IMPLIED          
  target           CDATA             #IMPLIED          
  type             CDATA             #IMPLIED          
  referrerpolicy   CDATA             #IMPLIED          
  ping             CDATA             #IMPLIED>         
]]>


<!--========== Tabular data ==========-->

<!ENTITY % HTML.table.element "INCLUDE">
<![ %HTML.table.element [
<!-- The table element (section 4.9.1).
     Content: In this order: optionally a caption element, followed by zero or
     more colgroup elements, followed optionally by a thead element, followed by
     either zero or more tbody elements or one or more tr elements, followed
     optionally by a tfoot element, optionally intermixed with one or more
     script-supporting elements.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT table - - (caption?,colgroup*,thead?,(tbody*|tr+),tfoot?) +(%scripting;)>
]]>

<!ENTITY % HTML.table.attlist "INCLUDE">
<![ %HTML.table.attlist [
<!ATTLIST table
  %extensionattrs;>
]]>

<!ENTITY % HTML.caption.element "INCLUDE">
<![ %HTML.caption.element [
<!-- The caption element (section 4.9.2).
     Content: Flow content, but with no descendant table elements.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT caption - - (#PCDATA|%flow;)* -(table)>
]]>

<!ENTITY % HTML.caption.attlist "INCLUDE">
<![ %HTML.caption.attlist [
<!ATTLIST caption
  %extensionattrs;>
]]>

<!ENTITY % HTML.colgroup.element "INCLUDE">
<![ %HTML.colgroup.element [
<!-- The colgroup element (section 4.9.3).
     Content: If the span attribute is present: Nothing.
     If the span attribute is absent: Zero or more col and template elements.
     Tag omission: A colgroup element's start tag can be omitted if the first
     thing inside the colgroup element is a col element, and if the element is
     not immediately preceded by another colgroup element whose end tag has been
     omitted. (It can't be omitted if the element is empty.).
     A colgroup element's end tag con be omitted if the colgroup element
     is not immediately followed by ASCII whitespace or a comment.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT colgroup O O (col|template)*>
]]>

<!ENTITY % HTML.colgroup.attlist "INCLUDE">
<![ %HTML.colgroup.attlist [
<!ATTLIST colgroup
  %extensionattrs; 
  span             NUMBER            #IMPLIED>         
]]>

<!ENTITY % HTML.col.element "INCLUDE">
<![ %HTML.col.element [
<!-- The col element (section 4.9.4).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT col - O EMPTY>
]]>

<!ENTITY % HTML.col.attlist "INCLUDE">
<![ %HTML.col.attlist [
<!ATTLIST col
  %extensionattrs; 
  span             NUMBER            #IMPLIED>         
]]>

<!ENTITY % HTML.tbody.element "INCLUDE">
<![ %HTML.tbody.element [
<!-- The tbody element (section 4.9.5).
     Content: Zero or more tr and script-supporting elements.
     Tag omission: A tbody element's start tag can be omitted if the first thing
     inside the tbody element is a tr element, and if the element is not
     immediately preceded by a tbody, thead, or tfoot element whose end tag has
     been omitted. (It can't be omitted if the element is empty.). A tbody
     element's end tag can be omitted if the tbody element is immediately
     followed by a tbody or tfoot element, or if there is no more content in the
     parent element. -->
<!ELEMENT tbody O O (tr*) +(%scripting;)>
]]>

<!ENTITY % HTML.tbody.attlist "INCLUDE">
<![ %HTML.tbody.attlist [
<!ATTLIST tbody
  %extensionattrs;>
]]>

<!ENTITY % HTML.thead.element "INCLUDE">
<![ %HTML.thead.element [
<!-- The thead element (section 4.9.6).
     Content: Zero or more tr and script-supporting elements.
     Tag omission: A thead element's end tag can be omitted if the thead element
     is immediately followed by a tbody or tfoot element. -->
<!ELEMENT thead - O (tr*) +(%scripting;)>
]]>

<!ENTITY % HTML.thead.attlist "INCLUDE">
<![ %HTML.thead.attlist [
<!ATTLIST thead
  %extensionattrs;>
]]>

<!ENTITY % HTML.tfoot.element "INCLUDE">
<![ %HTML.tfoot.element [
<!-- The tfoot element (section 4.9.7).
     Content: Zero or more tr and script-supporting elements.
     Tag omission: A tfoot element's end tag can be omitted if there is no more
     content in the parent element. -->
<!ELEMENT tfoot - O (tr*) +(%scripting;)>
]]>

<!ENTITY % HTML.tfoot.attlist "INCLUDE">
<![ %HTML.tfoot.attlist [
<!ATTLIST tfoot
  %extensionattrs;>
]]>

<!ENTITY % HTML.tr.element "INCLUDE">
<![ %HTML.tr.element [
<!-- The tr element (section 4.9.8).
     Content: Zero or more td, th, and script-supporting elements.
     Tag omission: A tr element's end tag can be omitted if the tr element is
     immediately followed by another tr element, or if there is no more content
     in the parent element. -->
<!ELEMENT tr - O (td|th)* +(%scripting;)>
]]>

<!ENTITY % HTML.tr.attlist "INCLUDE">
<![ %HTML.tr.attlist [
<!ATTLIST tr
  %extensionattrs;>
]]>

<!ENTITY % HTML.td.element "INCLUDE">
<![ %HTML.td.element [
<!-- The td element (section 4.9.9).
     Content: Flow content.
     Tag omission: A td element's end tag can be omitted if the td element is
     immediately followed by a td or th element, or if there is no more content
     in the parent element. -->
<!ELEMENT td - O (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.td.attlist "INCLUDE">
<![ %HTML.td.attlist [
<!ATTLIST td
  %extensionattrs; 
  colspan          NUMBER            #IMPLIED          
  rowspan          CDATA             #IMPLIED          
  headers          IDREFS            #IMPLIED          
  >                
]]>

<!ENTITY % HTML.th.element "INCLUDE">
<![ %HTML.th.element [
<!-- The th element (section 4.9.10).
     Content: Flow content, but with no header, footer, sectioning content, or
     heading content descendants
     Tag omission: A th element's end tag can be omitted if the th element is
     immediately followed by a td or th element, or if there is no more content
     in the parent element. -->
<!ELEMENT th - O (#PCDATA|%flow;)* -(header|footer|%sectioning;|%heading;)>
]]>

<!ENTITY % HTML.th.attlist "INCLUDE">
<![ %HTML.th.attlist [
<!ATTLIST th
  %extensionattrs; 
  colspan          NUMBER            #IMPLIED          
  rowspan          CDATA             #IMPLIED          
  headers          IDREFS            #IMPLIED          
  scope            (row|col|rowgroup|colgroup) #IMPLIED          
  abbr             CDATA             #IMPLIED>         
]]>


<!--========== Forms ==========-->

<!ENTITY % HTML.form.element "INCLUDE">
<![ %HTML.form.element [
<!-- The form element (section 4.10.3).
     Content: Flow content, but with no form element descendants.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT form - - (#PCDATA|%flow;)* -(form)>
]]>

<!ENTITY % HTML.form.attlist "INCLUDE">
<![ %HTML.form.attlist [
<!ATTLIST form
  %extensionattrs; 
  accept-charset   CDATA             #IMPLIED          
  action           %URI              #IMPLIED          
  autocomplete     (on|off)          #IMPLIED          
  enctype          CDATA             #IMPLIED          
  method           (get|post|dialog) #IMPLIED          
  name             CDATA             #IMPLIED          
  novalidate       (novalidate)      #IMPLIED          
  target           CDATA             #IMPLIED          
  rel              NMTOKENS          #IMPLIED>         
]]>

<!ENTITY % HTML.label.element "INCLUDE">
<![ %HTML.label.element [
<!-- The label element (section 4.10.4).
     Content: Phrasing content, but with no descendant labelable elements unless
     it is the element's labeled control, and no descendant label elements.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT label - - (#PCDATA|%phrasing;)* -(label|%flow_only;)>
]]>

<!ENTITY % HTML.label.attlist "INCLUDE">
<![ %HTML.label.attlist [
<!ATTLIST label
  %extensionattrs; 
  for              IDREF             #IMPLIED>         
]]>

<!ENTITY % HTML.input.element "INCLUDE">
<![ %HTML.input.element [
<!-- The input element (section 4.10.5).
     Content: Nothing.
     Tag omission: No end tag. -->
<!ELEMENT input - O EMPTY>
]]>

<!ENTITY % HTML.input.attlist "INCLUDE">
<![ %HTML.input.attlist [
<!ATTLIST input
  %extensionattrs; 
  accept           CDATA             #IMPLIED          
  alt              CDATA             #IMPLIED          
  autocomplete     CDATA             #IMPLIED          
  checked          (checked)         #IMPLIED          
  dirname          CDATA             #IMPLIED          
  disabled         (disabled)        #IMPLIED          
  form             IDREF             #IMPLIED          
  formaction       %URI              #IMPLIED          
  formenctype      CDATA             #IMPLIED          
  formmethod       (GET|POST)        #IMPLIED          
  formnovalidate   (formnovalidate)  #IMPLIED          
  formtarget       CDATA             #IMPLIED          
  height           CDATA             #IMPLIED          
  list             IDREF             #IMPLIED          
  max              CDATA             #IMPLIED          
  maxlength        CDATA             #IMPLIED          
  min              CDATA             #IMPLIED          
  minlength        CDATA             #IMPLIED          
  multiple         (multiple)        #IMPLIED          
  name             CDATA             #IMPLIED          
  pattern          CDATA             #IMPLIED          
  placeholder      CDATA             #IMPLIED          
  readonly         (readonly)        #IMPLIED          
  required         (required)        #IMPLIED          
  size             NUMBER            #IMPLIED          
  src              %URI              #IMPLIED          
  step             CDATA             #IMPLIED          
  type             (hidden|text|search|tel|url|email|password|date|month|week|time|datetime-local|number|range|color|checkbox|radio|file|submit|image|reset|button) #IMPLIED          
  value            CDATA             #IMPLIED          
  width            NUMBER            #IMPLIED>         
]]>

<!ENTITY % HTML.button.element "INCLUDE">
<![ %HTML.button.element [
<!-- The button element (section 4.10.6).
     Content: Phrasing content, but there must be no interactive content
     descendant.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT button - - (#PCDATA|%phrasing;)* -(%interactive;)>
]]>

<!ENTITY % HTML.button.attlist "INCLUDE">
<![ %HTML.button.attlist [
<!ATTLIST button
  %extensionattrs; 
  disabled         (disabled)        #IMPLIED          
  form             IDREF             #IMPLIED          
  formaction       %URI              #IMPLIED          
  formenctype      CDATA             #IMPLIED          
  formmethod       (GET|POST)        #IMPLIED          
  formnovalidate   (formnovalidate)  #IMPLIED          
  formtarget       CDATA             #IMPLIED          
  name             CDATA             #IMPLIED          
  type             (submit|reset|button) #IMPLIED          
  value            CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.select.element "INCLUDE">
<![ %HTML.select.element [
<!-- The select element (section 4.10.7).
     Content: Zero or more option, optgroup, and script-supporting elements.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT select - - (option|optgroup)* +(%scripting;)>
]]>

<!ENTITY % HTML.select.attlist "INCLUDE">
<![ %HTML.select.attlist [
<!ATTLIST select
  %extensionattrs; 
  autocomplete     CDATA             #IMPLIED          
  disabled         (disabled)        #IMPLIED          
  form             IDREF             #IMPLIED          
  multiple         (multiple)        #IMPLIED          
  name             CDATA             #IMPLIED          
  required         (required)        #IMPLIED          
  size             NUMBER            #IMPLIED>         
]]>

<!ENTITY % HTML.datalist.element "INCLUDE">
<![ %HTML.datalist.element [
<!-- The datalist element (section 4.10.8).
     Content: Either: phrasing content.
     Or: Zero or more option and script-supporting elements.
     Tag omission: Neither tag is omissible.
     Note: Only script is accepted as script-supporting element. -->
<!ELEMENT datalist - - ((#PCDATA|%phrasing;)*|(option|script)*) -(%flow_only;)>
]]>

<!ENTITY % HTML.datalist.attlist "INCLUDE">
<![ %HTML.datalist.attlist [
<!ATTLIST datalist
  %extensionattrs;>
]]>

<!ENTITY % HTML.optgroup.element "INCLUDE">
<![ %HTML.optgroup.element [
<!-- The optgroup element (section 4.10.9).
     Content: Zero or more option and script-supporting elements.
     Tag omission: An optgroup element's end tag can be omitted if the optgroup
     element is immediately followed by another optgroup element, or if there is
     no more content in the parent element. -->
<!ELEMENT optgroup - - (option*) +(%scripting;)>
]]>

<!ENTITY % HTML.optgroup.attlist "INCLUDE">
<![ %HTML.optgroup.attlist [
<!ATTLIST optgroup
  %extensionattrs; 
  disabled         (disabled)        #IMPLIED          
  label            CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.option.element "INCLUDE">
<![ %HTML.option.element [
<!-- The option element (section 4.10.10).
     Content: If the element has a label attribute and a value attribute:
     Nothing.
     If the element has a label attribute but no value attribute: Text.
     If the element has no label attribute and is not a child of a datalist
     element: Text that is not inter-element white space.
     If the element has no label attribute and is a child of a datalist element:
     Text.
     Tag omission: An option element's end tag can be omitted if the option
     element is immediately followed by another option element, or if it is
     immediately followed by an optgroup element, or if there is no more content
     in the parent element.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT option - - (#PCDATA)*>
]]>

<!ENTITY % HTML.option.attlist "INCLUDE">
<![ %HTML.option.attlist [
<!ATTLIST option
  %extensionattrs; 
  disabled         (disabled)        #IMPLIED          
  label            CDATA             #IMPLIED          
  selected         (selected)        #IMPLIED          
  value            CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.textarea.element "INCLUDE">
<![ %HTML.textarea.element [
<!-- The textarea element (section 4.10.11).
     Content: Text.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT textarea - - RCDATA>
]]>

<!ENTITY % HTML.textarea.attlist "INCLUDE">
<![ %HTML.textarea.attlist [
<!ATTLIST textarea
  %extensionattrs; 
  autocomplete     CDATA             #IMPLIED          
  cols             NUMBER            #IMPLIED          
  dirname          CDATA             #IMPLIED          
  disabled         (disabled)        #IMPLIED          
  form             IDREF             #IMPLIED          
  maxlength        CDATA             #IMPLIED          
  minlength        CDATA             #IMPLIED          
  name             CDATA             #IMPLIED          
  placeholder      CDATA             #IMPLIED          
  readonly         (readonly)        #IMPLIED          
  required         (required)        #IMPLIED          
  rows             NUMBER            #IMPLIED          
  wrap             (soft|hard)       #IMPLIED>         
]]>

<!ENTITY % HTML.output.element "INCLUDE">
<![ %HTML.output.element [
<!-- The output element (section 4.10.12).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT output - - (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.output.attlist "INCLUDE">
<![ %HTML.output.attlist [
<!ATTLIST output
  %extensionattrs; 
  for              IDREF             #IMPLIED          
  form             IDREF             #IMPLIED          
  name             CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.progress.element "INCLUDE">
<![ %HTML.progress.element [
<!-- The progress element (section 4.10.13).
     Content: Phrasing content, but there must be no progress element
     descendants.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT progress - - (#PCDATA|%phrasing;)* -(progress|%flow_only;)>
]]>

<!ENTITY % HTML.progress.attlist "INCLUDE">
<![ %HTML.progress.attlist [
<!ATTLIST progress
  %extensionattrs; 
  value            CDATA             #IMPLIED          
  max              CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.meter.element "INCLUDE">
<![ %HTML.meter.element [
<!-- The meter element (section 4.10.14).
     Content: Phrasing content, but there must be no meter element descendants.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT meter - - (#PCDATA|%phrasing;)* -(meter|%flow_only;)>
]]>

<!ENTITY % HTML.meter.attlist "INCLUDE">
<![ %HTML.meter.attlist [
<!ATTLIST meter
  %extensionattrs; 
  value            CDATA             #IMPLIED          
  min              CDATA             #IMPLIED          
  max              CDATA             #IMPLIED          
  low              CDATA             #IMPLIED          
  high             CDATA             #IMPLIED          
  optimum          CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.fieldset.element "INCLUDE">
<![ %HTML.fieldset.element [
<!-- The fieldset element (section 4.10.15).
     Content: Optionally a legend element, followed by flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT fieldset - - (legend?,(#PCDATA|%flow;)*)>
]]>

<!ENTITY % HTML.fieldset.attlist "INCLUDE">
<![ %HTML.fieldset.attlist [
<!ATTLIST fieldset
  %extensionattrs; 
  disabled         (disabled)        #IMPLIED          
  form             IDREF             #IMPLIED          
  name             CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.legend.element "INCLUDE">
<![ %HTML.legend.element [
<!-- The legend element (section 4.10.16).
     Content: Phrasing content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT legend - - (#PCDATA|%phrasing;)*>
]]>

<!ENTITY % HTML.legend.attlist "INCLUDE">
<![ %HTML.legend.attlist [
<!ATTLIST legend
  %extensionattrs;>
]]>


<!--========== Interactive elements ==========-->

<!ENTITY % HTML.details.element "INCLUDE">
<![ %HTML.details.element [
<!-- The details element (section 4.11.1).
     Content: One summary element followed by flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT details - - (summary,(#PCDATA|%flow;))>
]]>

<!ENTITY % HTML.details.attlist "INCLUDE">
<![ %HTML.details.attlist [
<!ATTLIST details
  %extensionattrs; 
  open             (open)            #IMPLIED>         
]]>

<!ENTITY % HTML.summary.element "INCLUDE">
<![ %HTML.summary.element [
<!-- The summary element (section 4.11.2).
     Content: Either: phrasing content.
     Or: one element of heading content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT summary - - ((#PCDATA|%phrasing;)+|%heading;) -(%flow_only;)>
]]>

<!ENTITY % HTML.summary.attlist "INCLUDE">
<![ %HTML.summary.attlist [
<!ATTLIST summary
  %extensionattrs;>
]]>

<!ENTITY % HTML.dialog.element "INCLUDE">
<![ %HTML.dialog.element [
<!-- The dialog element (section 4.11.14).
     Content: Flow content.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT dialog - - (#PCDATA|%flow;)*>
]]>

<!ENTITY % HTML.dialog.attlist "INCLUDE">
<![ %HTML.dialog.attlist [
<!ATTLIST dialog
  %extensionattrs; 
  open             (open)            #IMPLIED>         
]]>


<!--========== Scripting ==========-->

<!ENTITY % HTML.script.element "INCLUDE">
<![ %HTML.script.element [
<!-- The script element (section 4.12.1).
     Content: If there is no src attribute, depends on the value of the type
     attribute, but must match script content restrictions.
     If there is a src attribute, the element must be either empty or contain
     only script documentation that also matches script content restrictions.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT script - - CDATA>
]]>

<!ENTITY % HTML.script.attlist "INCLUDE">
<![ %HTML.script.attlist [
<!ATTLIST script
  %extensionattrs; 
  src              %URI              #IMPLIED          
  type             CDATA             #IMPLIED          
  async            (async)           #IMPLIED          
  defer            (defer)           #IMPLIED          
  crossorigin      %corssetting;     #IMPLIED          
  nomodule         (nomodule)        #IMPLIED          
  integrity        CDATA             #IMPLIED>         
]]>

<!ENTITY % HTML.noscript.element "INCLUDE">
<![ %HTML.noscript.element [
<!-- The noscript element (section 4.11.2).
     Content: When scripting is disabled, in a head element: in any order, zero
     or more link elements, zero or more style elements, and zero or more meta
     elements.
     When scripting is disabled, not in a head element: transparent, but there
     must be no noscript element descendants.
     Otherwise: text that conforms to the requirements given in the prose.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT noscript - - ANY>
]]>

<!ENTITY % HTML.noscript.attlist "INCLUDE">
<![ %HTML.noscript.attlist [
<!ATTLIST noscript
  %extensionattrs;>
]]>

<!ENTITY % HTML.template.element "INCLUDE">
<![ %HTML.template.element [
<!-- The template element (section 4.12.3).
     Content: Nothing (for clarification, see example).
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT template - - ANY>
]]>

<!ENTITY % HTML.template.attlist "INCLUDE">
<![ %HTML.template.attlist [
<!ATTLIST template
  %extensionattrs;>
]]>

<!ENTITY % HTML.slot.element "INCLUDE">
<![ %HTML.slot.element [
<!-- The slot element (section 4.12.4).
     Content: Transparent.
     Tag omission: Neither tag is omissible. -->
<!ELEMENT slot - - ANY>
]]>

<!ENTITY % HTML.slot.attlist "INCLUDE">
<![ %HTML.slot.attlist [
<!ATTLIST slot
  name             CDATA             #IMPLIED          
  %extensionattrs;>
]]>

<!ENTITY % HTML.canvas.element "INCLUDE">
<![ %HTML.canvas.element [
<!-- The canvas element (section 4.12.5).
     Content: Transparent, but with no interactive content descendants except
     for a elements, img elements with usemap attributes, button elements,
     input elements whose type attribute are in the Checkbox or Radio Button
     states, input elements that are buttons, and select elements
     with a multiple attribute or a display size greater than 1.
     Tag omission: Neither tag is omissible.
     Note: Not all model constraints are represented in this declaration. -->
<!ELEMENT canvas - - ANY -(audio|details|embed|iframe|label|object|textarea|video|keygen)>
]]>

<!ENTITY % HTML.canvas.attlist "INCLUDE">
<![ %HTML.canvas.attlist [
<!ATTLIST canvas
  %extensionattrs; 
  width            NUMBER            #IMPLIED          
  height           NUMBER            #IMPLIED>         
]]>


<!--============ Legacy elements ============-->

<!ENTITY % HTML.keygen.element "INCLUDE">
<![ %HTML.keygen.element [
<!ELEMENT keygen - O EMPTY>
]]>

<!ENTITY % HTML.keygen.attlist "IGNORE">

<!ENTITY % HTML.menuitem.element "INCLUDE">
<![ %HTML.menuitem.element [
<!ELEMENT menuitem - O EMPTY>
]]>
        
<!ENTITY % HTML.menuitem.attlist "IGNORE">

<!ENTITY % HTML.rb.element "INCLUDE">
<![ %HTML.rb.element [
<!ELEMENT rb - O (#PCDATA|%phrasing;)* -(%flow_only;)>
]]>

<!ENTITY % HTML.rb.attlist "IGNORE">

<!ENTITY % HTML.rtc.element "INCLUDE">
<![ %HTML.rtc.element [
<!ELEMENT rtc - O (#PCDATA|%phrasing;|rt|rp)* -(%flow_only;)>
]]>

<!ENTITY % HTML.rtc.attlist "IGNORE">