statica 0.50.3

A blazingly fast static site generator that builds on just HTML
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, EachDirective, Element, Node, SlotKind, StaticaLinkRel};
pub use html5::{parse_document, parse_fragment};
pub use serialize::{escape_text, serialize_document, serialize_nodes};