Module pulldown_cmark::html[][src]

HTML renderer that takes an iterator of events as input.

Re-exports

use std::borrow::Cow;
use std::collections::HashMap;
use std::fmt::Write;
use parse::Event;
use parse::Tag;
use parse::Event::Start;
use parse::Event::End;
use parse::Event::Text;
use parse::Event::Html;
use parse::Event::InlineHtml;
use parse::Event::SoftBreak;
use parse::Event::HardBreak;
use parse::Event::FootnoteReference;
use parse::Alignment;
use escape::escape_html;
use escape::escape_href;

Structs

Ctx

Enums

TableState

Functions

push_html

Iterate over an Iterator of Events, generate HTML for each Event, and push it to a String.