mathml_latex/
lib.rs

1#![deny(missing_debug_implementations, missing_copy_implementations)]
2#![warn(missing_docs, rustdoc::missing_crate_level_docs)]
3#![doc = include_str!("../readme.md")]
4#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
5#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
6
7mod block;
8mod codegen;
9mod definitions;
10mod parser;
11
12pub use crate::{
13    block::LaTeXBlock,
14    definitions::LaTeXEngine,
15    parser::{parse_latex, LaTeXNode},
16};