statica 0.32.1

statica — Powered HTML pipeline (parse, funnel, bind, scope, emit)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Owned HTML AST + html5ever bridge.
//!
//! Parse flow: [`pre`] (authoring normalize) → html5ever → [`normalize`] (AST lower).

mod ast;
mod html5;
mod normalize;
mod pre;
mod serialize;

pub use ast::{AttrMap, Document, Element, Node};
pub use html5::{parse_document, parse_fragment};
pub use serialize::{escape_text, serialize_document, serialize_nodes};