plantuml: add page (#4040)

Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
client-spec/clarity
michaeldel 2020-05-12 23:47:54 +02:00 committed by GitHub
parent 9aad4459a5
commit 7b7dc48153
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
pages/common/plantuml.md Normal file
View File

@ -0,0 +1,28 @@
# plantuml
> Create UML diagrams from a plain text language and render them in different formats.
> More information: <https://plantuml.com/en/command-line>.
- Render diagrams to default format (PNG):
`plantuml {{diagram1.puml}} {{diagram2.puml}}`
- Render a diagram in given format (e.g. `png`, `pdf`, `svg`, `txt`):
`plantuml -t{{format}} {{diagram.puml}}`
- Render all diagrams of a directory:
`plantuml {{path/to/diagrams}}`
- Render a diagram to the output directory:
`plantuml -o {{path/to/output}} {{diagram.puml}}`
- Render a diagram with the configuration file:
`plantuml -config {{config.cfg}} {{diagram.puml}}`
- Display help:
`plantuml -help`