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 ast;
8mod blocks;
9mod identifiers;
10mod numbers;
11mod operators;
12mod traits;
13
14pub mod helpers;
15
16pub use crate::{
17 ast::MathML,
18 blocks::{MathFunction, MathPhantom, MathRoot, MathRow, MathStyle, MathTable},
19 identifiers::{FontVariant, MathIdentifier, MathText},
20 numbers::{LineThickness, MathError, MathFraction, MathNumber},
21 operators::{MathFenced, MathMultiScript, MathOperator, MathSpace, MathSqrt, MathUnderOver},
22 traits::MathElement,
23};