pub fn push_html<'a, I>(
    out: &mut String,
    events: I,
    footnote_prefix: &str
) -> Result<()>where
    I: Iterator<Item = Event<'a>>,
Expand description

Converts Events into an HTML string much like pulldown_cmark::html::push_html except that this also supports footnote prefixes. See the module description for more details.