1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 19:44:56 +02:00
tldr/pages/common/plantuml.md
michaeldel 0265e42443
plantuml: add page (#4040)
Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
2020-05-21 12:30:19 +01:00

668 B

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