Trait ToHtml

Source
pub trait ToHtml {
    // Required method
    fn to_html(
        &self,
        output_dir: &str,
        input_dir: &str,
        html_rel_path: &str,
    ) -> String;
}

Required Methods§

Source

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.

Implementors§