lewp 0.3.0

Say goodbye to the web template hell. Generate your HTML5 website technically optimized and always valid. In your Rust source.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! CSS modification functions especially required by lewp.

mod component;
mod entireness;
mod processed_component;
mod register;

#[cfg(test)]
mod test;

pub use {
    component::Component,
    entireness::Entireness,
    processed_component::ProcessedComponent,
    register::{Register, RegisterOptions},
};