markdown.html.Filter
FilterA type used to transform an HTML document.
Required methods
run
Show source codeHide source code
fn pub mut run(document: mut html.Document)fn pub mut run(document: mut Document)Transforms the HTML document.
How or what exactly this method does is up to the type that implements this trait. Examples include adding IDs to headings, generating a table of contents, or replacing one element with another.
Implementations
TableOfContents
impl Filter for TableOfContents