[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]test/2023-06-08 13:45 -  
[   ]yarn.lock2023-06-08 13:45 86 0fb859dc fixed mobile overflwo options [كارل مبارك]
[TXT]README.md2023-06-08 13:45 413 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]package.json2023-06-08 13:45 1.4K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]index.js2023-06-08 13:45 45K0fb859dc 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}`)
```