winged-rust 1.0.1

Fast, type-safe HTML DSL and static site generation engine in Rust and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The core engine: the node tree, the renderer and escaping.

pub mod attribute;
pub mod element;
pub mod escape;
pub mod node;
pub mod render;
pub mod tags;

pub use attribute::Attribute;
pub use element::Element;
pub use node::Node;
pub use render::{Render, RenderOptions};