0.1.0 • Published 7 years ago

pretty-latex v0.1.0

Weekly downloads
29
License
MIT
Repository
github
Last release
7 years ago

pretty-latex

A Node wrapper around latexindent for beautifying LaTeX documents.

Installation

yarn add pretty-latex

or

npm install pretty-latex

You will also need to make sure you have latexindent installed on your system.

Usage

const fs = require('fs')
const beautify = require('pretty-latex')

const input = fs.createReadStream('input.tex')
const output = fs.createWriteStream('output.tex')

beautify(input).pipe(output)

License

MIT