https://github.com/disjukr/mml2tex
convert mathml to tex
https://github.com/disjukr/mml2tex
convert mathml mml npm tex typescript
Last synced: 26 days ago
JSON representation
convert mathml to tex
- Host: GitHub
- URL: https://github.com/disjukr/mml2tex
- Owner: disjukr
- Created: 2020-06-22T09:12:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-14T04:41:34.000Z (almost 3 years ago)
- Last Synced: 2026-02-27T04:35:41.772Z (3 months ago)
- Topics: convert, mathml, mml, npm, tex, typescript
- Language: XSLT
- Homepage: https://www.npmjs.com/package/mml2tex
- Size: 83 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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 }
```