Pandoc filter which converts PlantUML code blocks to PlantUML images.
```plantuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
```
Install it with pip:
pip install pandoc-plantuml-latex
And use it like any other pandoc filter:
pandoc tests/sample.md -o sample.pdf --filter pandoc-plantuml
The PlantUML binary must be in your $PATH
or can be set with the
PLANTUML_BIN
environment variable.
Differences from pandoc-plantuml-filter
-
merged pull request Raw latex support
see tests/ -
also generate vector images for latex
beamer
template -
added debugging environment variable
DEBUG=1