[][src]Module yarte_html::interface

This module contains functionality for managing the DOM, including adding/removing nodes.

It can be used by a parser to create the DOM graph structure in memory.

Re-exports

pub use self::NodeOrText::AppendNode;
pub use self::NodeOrText::AppendText;

Structs

Attribute
ElementFlags

Special properties of an element, useful for tagging elements with this information.

ExpandedName
QualName

Enums

NextParserState

Whether to interrupt further parsing of the current input until the next explicit resumption of the tokenizer, or continue without any interruption.

NodeOrText

Something which can be inserted into the DOM.

YName

Bypass LocalName composing with expressions

Traits

TreeSink

Methods a parser can use to create the DOM. The DOM provider implements this trait.

Functions

create_element

A constructor for an element.