pub trait ToHtml { // Required method fn to_html( &self, output_dir: &str, input_dir: &str, html_rel_path: &str, ) -> String; }
Converts the implementing type to an String representing its HTML equivalent.