summaryrefslogtreecommitdiff
path: root/doc/administration/integration/plantuml.md
Commit message (Collapse)AuthorAgeFilesLines
* Remove consecutive blank lines from markdown filesEvan Read2019-02-181-1/+0
| | | | | For the sake of consistency, removes any extraneous consecutive blank lines from the doc suite.
* Specification change: Fix asciidoctor block context.Koichiro Mikami2018-10-111-2/+2
|
* Resolve "CE documentation is not CommonMark compliant"Brett Walker2018-09-061-6/+5
|
* Added PlantUML server using dockermorph0272018-02-021-1/+13
|
* plantuml.md: use html tags so code fence example would workElan Ruusamäe2017-12-271-8/+10
|
* Update gitlab-markup and PlantUML docsMarkus Koller2017-11-011-16/+21
|
* Add documentation for PlantUML in reStructuredTextMarkus Koller2017-08-291-1/+10
|
* Update plantuml.md Fix wrong order when restarting tomcat service [ci skip] Vladimir Tasic2017-04-211-1/+1
|
* Update plantuml.md to add the actual link.Sascha Reynolds2017-04-201-0/+2
|
* Update plantuml.md to fix wrong introduced in link.Sascha Reynolds2017-04-191-1/+1
|
* PlantUML support for MarkdownHoracio Sanson2017-02-031-5/+13
| | | | | | | | | | | Allow rendering of PlantUML diagrams in Markdown documents using fenced blocks: ```plantuml Bob -> Sara : Hello Sara -> Bob : Go away ``` Closes: #4048
* Add support for PlantUML diagrams in Asciidoc.Horacio Sanson2017-01-121-0/+87
This MR enables rendering of PlantUML diagrams in Asciidoc documents. To add a PlantUML diagram all we need is to include a plantuml block like: ``` [plantuml, id="myDiagram", width="100px", height="100px"] -- bob -> alice : ping alice -> bob : pong -- ``` The plantuml block is substituted by an HTML img element with *src* pointing to an external PlantUML server. This MR also add a PlantUML integration section to the Administrator -> Settings page to configure the PlantUML rendering service and to enable/disable it. Closes: #17603