HtmlDescriptionLinter

Trait HtmlDescriptionLinter 

Source
pub trait HtmlDescriptionLinter {
    // Required method
    fn description_html(&self) -> String;
}
Expand description

A blanket-implemented trait that renders the Markdown description field of a linter to HTML.

Required Methods§

Implementors§

Source§

impl<L> HtmlDescriptionLinter for L
where L: Linter + ?Sized,