You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some applications can make use of existing XML parsers for automated data manipulation (e.g. with XPath/XQuery/XSLT, but not necessarily), and since HTML parsing rules derive from SGML, it might be useful to generate output that passes both as valid HTML5 and as well-formed XML.
For example, the following self-closing element:
<inputchecked>
upon enabling such an option would become like:
<inputchecked="checked" />
(Note the space in front of the trailing slash, which is required here by SGML-derived HTML parsing rules.)
The text was updated successfully, but these errors were encountered:
Some applications can make use of existing XML parsers for automated data manipulation (e.g. with XPath/XQuery/XSLT, but not necessarily), and since HTML parsing rules derive from SGML, it might be useful to generate output that passes both as valid HTML5 and as well-formed XML.
For example, the following self-closing element:
upon enabling such an option would become like:
(Note the space in front of the trailing slash, which is required here by SGML-derived HTML parsing rules.)
The text was updated successfully, but these errors were encountered: