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
- Host: GitHub
- URL: https://github.com/disjukr/mml2tex
- Owner: disjukr
- Created: 2020-06-22T09:12:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-14T04:41:34.000Z (almost 2 years ago)
- Last Synced: 2025-01-26T15:23:44.175Z (4 months ago)
- Topics: convert, mathml, mml, npm, tex, typescript
- Language: XSLT
- Homepage: https://www.npmjs.com/package/mml2tex
- Size: 83 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mml2tex
convert mathml to texused 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 }
```