From 9c27cf9572e74ba45142e978989beb2fbedd6479 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Mon, 27 Jul 2026 11:47:38 +0300 Subject: [PATCH] plantuml: fix options (#23286) --- pages/common/plantuml.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/plantuml.md b/pages/common/plantuml.md index 57a444d230..2295b4e01d 100644 --- a/pages/common/plantuml.md +++ b/pages/common/plantuml.md @@ -9,7 +9,7 @@ - Render a diagram in given format (e.g. `png`, `pdf`, `svg`, `txt`): -`plantuml -t {{format}} {{diagram.puml}}` +`plantuml {{[-f|--format]}} {{format}} {{diagram.puml}}` - Render all diagrams of a directory: @@ -17,7 +17,7 @@ - Render a diagram to the output directory: -`plantuml -o {{path/to/output}} {{diagram.puml}}` +`plantuml {{[-o|--output-dir]}} {{path/to/output}} {{diagram.puml}}` - Render a diagram without storing the diagram's source code (Note: It's stored by default when the `-nometadata` option isn't specified): @@ -29,8 +29,8 @@ - Render a diagram with the configuration file: -`plantuml -config {{config.cfg}} {{diagram.puml}}` +`plantuml --config {{config.cfg}} {{diagram.puml}}` - Display help: -`plantuml -help` +`plantuml {{[-h|--help]}}`