disjukr / mml2tex

convert mathml to tex

Home Page:https://www.npmjs.com/package/mml2tex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mml2tex

convert mathml to tex

used the xsl code from: https://github.com/transpect/mml2tex

example

import mml2tex from 'mml2tex';

const mml = `
    <math xmlns="http://www.w3.org/1998/Math/MathML">
        <msqrt>
            <mn>2</mn>
        </msqrt>
    </math>
`;
const tex = mml2tex(mml);
console.log(tex); // \sqrt{ 2 }

About

convert mathml to tex

https://www.npmjs.com/package/mml2tex


Languages

Language:XSLT 99.7%Language:TypeScript 0.3%