Expand description
A simple MathML Core renderer.
This crate provides a “simple” mathml
renderer which is available through the
push_mathml
and write_mathml
functions.
Functions§
- push_
mathml - Takes a
Parser
, or anyIterator<Item = Result<Event<'_>, E>>
as input, and renders the MathML into the given string. - write_
mathml - Takes a
Parser
, or anyIterator<Item = Result<Event<'_>, E>>
, as input and renders the MathML into the given writer.