UNPKG

latex-utensils

Version:

A LaTeX parser, a BibTeX parser, and utilities

9 lines (8 loc) 282 B
/** * The main module of `latex-utensils`. */ /** */ import * as latexParser from './latex/latex_parser'; import * as bibtexParser from './bibtex/bibtex_parser'; import * as latexLogParser from './latex_log/latex_log_parser'; export { bibtexParser, latexLogParser, latexParser };