Function write_html_fmt

Source
pub fn write_html_fmt<'a, W, I>(
    writer: W,
    iter: I,
    config: &HtmlConfig,
) -> Result<(), HtmlError>
where W: Write, I: Iterator<Item = Event<'a>>,
Expand description

Renders markdown events to HTML using a fmt::Write implementation

ยงArguments

  • writer - Any type implementing fmt::Write
  • iter - Iterator of markdown events to process
  • config - Configuration for HTML rendering