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§
- Close
Tag - Open tag for element,
<name attr=x, attr_flag> - Close
TagStart - Start part of element’s close tag.
Its commonly used as separator
</ - ComEnd
- End part of comment tag
--> - ComStart
- Start part of comment tag
<!-- - Dash
- DocStart
- Start part of doctype tag
<! - Fragment
Close - Fragment close part
</> - Fragment
Open - Fragment open part
<> - OpenTag
- Open tag for element, possibly self-closed.
<name attr=x, attr_flag> - Open
TagEnd - End part of element’s open tag
/>or>