diff options
author | Markus Koller <markus-koller@gmx.ch> | 2017-08-29 16:04:32 +0200 |
---|---|---|
committer | Markus Koller <markus-koller@gmx.ch> | 2017-08-29 16:09:46 +0200 |
commit | 21cf3d2c3f39de8069c404932733068c3100a279 (patch) | |
tree | 981f0a058697e9a3241a7f5fe830282e959806c9 /doc | |
parent | ed1ca47c9ea893d643ae613f39b65d80db3b0e67 (diff) | |
download | gitlab-ce-21cf3d2c3f39de8069c404932733068c3100a279.tar.gz |
Add documentation for PlantUML in reStructuredText
Diffstat (limited to 'doc')
-rw-r--r-- | doc/administration/integration/plantuml.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/administration/integration/plantuml.md b/doc/administration/integration/plantuml.md index b21817c1fd3..652ca9cf454 100644 --- a/doc/administration/integration/plantuml.md +++ b/doc/administration/integration/plantuml.md @@ -71,6 +71,15 @@ And in Markdown using fenced code blocks: Alice -> Bob : Go Away ``` +And in reStructuredText using a directive: + +``` +.. plantuml:: + + Bob -> Alice: hello + Alice -> Bob: Go Away +``` + The above blocks will be converted to an HTML img tag with source pointing to the PlantUML instance. If the PlantUML server is correctly configured, this should render a nice diagram instead of the block: @@ -94,4 +103,4 @@ Some parameters can be added to the AsciiDoc block definition: Markdown does not support any parameters and will always use PNG format. -[ce-8537]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8537
\ No newline at end of file +[ce-8537]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8537 |