Function write_html_io

Source
pub fn write_html_io<'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 an io::Write implementation

ยงArguments

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