mathml_latex/definitions/
mod.rs

1use std::collections::BTreeMap;
2mod builtin;
3
4#[derive(Clone, Debug)]
5pub struct LaTeXEngine {
6    functions: BTreeMap<String, String>,
7    operators: BTreeMap<String, String>,
8    spaces: BTreeMap<String, f32>,
9    letters: BTreeMap<String, String>,
10}