An open API service indexing awesome lists of open source software.

https://github.com/disjukr/mml2tex

convert mathml to tex
https://github.com/disjukr/mml2tex

convert mathml mml npm tex typescript

Last synced: 2 months ago
JSON representation

convert mathml to tex

Awesome Lists containing this project

README

        

# mml2tex
convert mathml to tex

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

## example
```js
import mml2tex from 'mml2tex';

const mml = `


2


`;
const tex = mml2tex(mml);
console.log(tex); // \sqrt{ 2 }
```