Expand description
XML parsing utilities. Exports functions and configuration structs
that are sufficient to process a roxmltree::Node.
Structs§
- Document
- An XML tree container.
- Node
- A node in a document.
- Parse
Options - Used to keep Clippy’s
too_many_argumentcheck happy. - Parse
XmlConfig - Configuration to determine which XML options will be used when
parsing a roxmltree
Node.
Statics§
- DEFAULT_
ALWAYS_ USE_ TEXT_ KEY - DEFAULT_
ATTR_ PREFIX - DEFAULT_
INCLUDE_ ATTR - DEFAULT_
PARSE_ BOOL - DEFAULT_
PARSE_ NULL - DEFAULT_
PARSE_ NUMBER - DEFAULT_
TEXT_ KEY - DEFAULT_
TRIM - XML_RE
- A lazily initialized regular expression that matches excess whitespace between XML/HTML tags.
Functions§
- parse_
xml - Parses an XML string into a structured
Resolvedformat based on the providedParseOptions. - process_
node - Process an XML
Nodeand return a VRLValue.