Expand description
Tokens that is used as parts of nodes, to simplify parsing.
Example:
<!--
<>
</>
<!
/>
Also contain some entities that split parsing into several small units,
like: <open_tag attr />
</close_tag>
Structs§
- Open tag for element,
<name attr=x, attr_flag>
- Start part of element’s close tag. Its commonly used as separator
</
- End part of comment tag
-->
- Start part of comment tag
<!--
- Start part of doctype tag
<!
- Fragment close part
</>
- Fragment open part
<>
- Open tag for element, possibly self-closed.
<name attr=x, attr_flag>
- End part of element’s open tag
/>
or>