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
/// Defines the level of completeness.
pub enum Entireness {
    /// The entire CSS.
    Full,
    /// Only render critical parts, at least everything that affects
    /// [cumulative layout shift](https://web.dev/cls/).
    RenderCritical,
    /// Only non-render critical parts.
    NonRenderCritical,
}