pub trait DocumentExt {
    fn into_html(self) -> String;
}
Expand description

Methods for easy handling of an HTML document.

Required methods

Converts the given node to an HTML string.

Implementors