Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 923 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 923 Bytes

pandoc-plantuml-filter

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
```

Usage

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