pulldown_latex/
lib.rs

1//! This crate provides a pull [`Parser`] for `LaTeX` math notation, and a `MathML` renderer,
2//! available through the [`mathml`] module. This renderer closely follows the _MathML Core_
3//! specification.
4
5#![doc = include_str!("../docs/usage.md")]
6
7pub mod config;
8pub mod event;
9pub mod mathml;
10pub mod parser;
11
12#[doc(inline)]
13pub use config::RenderConfig;
14#[doc(inline)]
15pub use event::Event;
16#[doc(inline)]
17pub use mathml::{push_mathml, write_mathml};
18#[doc(inline)]
19pub use parser::{error::ParserError, storage::Storage, Parser};