Re-exports§
pub use self::TagKind::EmptyTag;
pub use self::TagKind::EndTag;
pub use self::TagKind::ShortTag;
pub use self::TagKind::StartTag;
pub use self::Token::CharacterTokens;
pub use self::Token::EOFToken;
pub use self::Token::NullCharacterToken;
pub use self::Token::ParseError;
pub use self::Token::CommentToken;
pub use self::Token::DoctypeToken;
pub use self::Token::PIToken;
pub use self::Token::TagToken;
Structs§
- A
DOCTYPE
token. Doctype token in XML5 is rather limited for reasons, such as: security and simplicity. XML5 only supports declaring DTD with name, public identifier and system identifier - A ProcessingInstruction token.
- XML 5 Tag Token
Enums§
- Tag kind denotes which kind of tag did we encounter.
- Describes tokens encountered during parsing of input.
Traits§
- Types which can receive tokens from the tokenizer.