lewp-html 0.2.0

Straightforward HTML document building. Write your HTML with full algorithmic power instead of creating messy and confusing templates that contain typing errors.
Documentation
1
2
3
4
5
6
7
//! Easy handling of an HTML document.

/// Methods for easy handling of an HTML document.
pub trait DocumentExt {
    /// Converts the given node to an HTML string.
    fn into_html(self) -> String;
}