live-pandoc is simple script designed to run a pandoc command against a file when changes to that file are detected.
pip install live-pandoc
live-pandoc was designed to be used identically to how pandoc would be used.
For example, if running the following pandoc command:
pandoc README.md -o README.pdf
The live-pandoc command would run as:
live-pandoc README.md -o README.pdf
When changes are detected in README.md
, pandoc README.md -o README.pdf
will be run.