1//! Easy handling of an HTML document. 2 3/// Methods for easy handling of an HTML document. 4pub trait DocumentExt { 5 /// Converts the given node to an HTML string. 6 fn into_html(self) -> String; 7}