Function write_mathml

Source
pub fn write_mathml<'a, I, W, E>(
    writer: W,
    parser: I,
    config: RenderConfig<'a>,
) -> Result<()>
where I: Iterator<Item = Result<Event<'a>, E>>, W: Write, E: Error,
Expand description

Takes a Parser, or any Iterator<Item = Result<Event<'_>, E>>, as input and renders the MathML into the given writer.