mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-05 11:18:39 +00:00
* Avoid unnecessary <mrow> wrapping buildMathML gains two helpers: * `makeRow` helper wraps an array of nodes in `<mrow>`, unless the array has length 1, in which case no wrapping is necessary. * `buildExpressionRow` for common case of `makeRow(buildExpression(...))` * Combine adjacent <mtext>s in all cases No more need for `makeTextRow` helper or anything fancy in text MathML handler. * Concatenate <mn>s and decimal point into single <mn> Fix #203 * Fix snapshots