diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..d107a90ec04e91b65f676d54d9900750d7635160 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +README.pdf +/plantuml-images diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1ae4a377cb73e14c79591f24c11843cd8c0aec2c --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +Usage: + +```/bin/sh +docker run -w /foo -v "${PWD}:/foo" -it modjular/latex-pandoc-mermaid-plantuml pandoc -s -N README.md -o README.pdf --filter pandoc-plantuml +``` + +This is an example +```plantuml +@startuml +class Car +Driver - Car : drives > +Car *- Wheel : have 4 > +Car -- Person : < owns +@enduml +```