//! Mathematical formulas. use super::prelude::*; /// A mathematical formula. #[derive(Debug, Hash)] pub struct MathNode { /// The formula. pub formula: EcoString, /// Whether the formula is display-level. pub display: bool, } #[class] impl MathNode { fn construct(_: &mut EvalContext, args: &mut Args) -> TypResult