Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 571 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 571 Bytes

ParseLaTeX

A library for parsing LaTeX

DESCRIPTION

This module implements a LaTeX parser.

BUILDING

$ make

This command will run ESLint linter and Jest tests.

TESTING

$ make test

This command will run ESLint linter and Jest tests.

INSTALLING

$ npm i './parselatex' # where ./parselatex refers to the working parselatex directory

where ./parselatex refers to the directory that contains this repo.

CALLING

import {Parser} from '@artcompiler/parselatex'
const node = Parser.parse('1 + 2');