pandoc-filter-plantuml

A Pandoc AST filter rendering PlantUML code blocks into vector diagrams.

This filter produces TikZ code that can be rendered as vector diagrams in PDF documents, or as raster graphics by using another filter such as tikz.py.

Example

A PlantUML diagram in an example Pandoc Markdown file example.md:

---
header-includes: \usepackage{tikz}
---

```{.puml .centered caption="Courtesy protocol" width=\columnwidth}
@startuml
Bob->Alice : hello
Alice->Bob : hi
@enduml
```

Using the helper scripts pandoc-filter-plantuml.sh:

#/bin/sh
java -jar pandoc-filter-plantuml.jar <&0

Can be rendered as a vector resource in a PDF by running:

% pandoc --filter=pandoc-filter-plantuml.sh \
         --output=example.pdf \
         example.md

Or as a raster image using tikz.py in an HTML document with the following command:

% pandoc --filter=pandoc-filter-plantuml.sh \
         --filter=tikz.py \
         --output=example.html \
         example.md

Options

The following rendering options can be supplied as fenced code attributes:

Build

The project can be built using the Gradle build task.

An autonomous jar file can be generated using the jar task.

License

Copyright (C) 2018 Pacien TRAN-GIRARD

pandoc-filter-plantmul is distributed under the terms of GNU Affero General Public License v3.0, as detailed in the attached license.md file.

Builds of this software embed and make use of the following Libraries: