UNPKG
latex
Version:
latest (0.0.1)
0.0.1
0.0.0
A simple wrapper for LaTeX in node.js
mikolalysenko/node-latex
latex
/
examples
/
stream.js
4 lines
(2 loc)
•
146 B
JavaScript
View Raw
1
2
3
4
//One liner application of node-latex showing how to make tex work with streams
require
("../texwrapper.js")(process.stdin)
.pipe
(process.stdout);