![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | test/ | 2023-06-08 13:45 | - | |
![]() | yarn.lock | 2023-06-08 13:45 | 86 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | README.md | 2023-06-08 13:45 | 413 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | package.json | 2023-06-08 13:45 | 1.4K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | index.js | 2023-06-08 13:45 | 45K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
# AsciiMath to LaTex converter [AsciiMath](http://asciimath.org/) to [LaText](https://www.latex-project.org/) converter. ## Installation ``` yarn add asciimath-to-latex ``` ## Usage ```javascript const asciimath2latex = require('asciimath-to-latex') const asciimath = '2=(((3-x)xx2)/(3-x))' console.log(`asciimath: ${asciimath}`) const latex = asciimath2latex(asciimath) console.log(`latex: ${latex}`) ```