Commit Graph

8 Commits

Author SHA1 Message Date
Elan Ruusamäe e5b5d27dea plantuml.md: use html tags so code fence example would work 2017-12-27 19:30:36 +02:00
Markus Koller fab06c980a
Update gitlab-markup and PlantUML docs 2017-11-01 13:50:35 +01:00
Markus Koller 21cf3d2c3f
Add documentation for PlantUML in reStructuredText 2017-08-29 16:09:46 +02:00
Vladimir Tasic 6ffd7a067a Update plantuml.md Fix wrong order when restarting tomcat service [ci skip] 2017-04-21 16:45:27 +00:00
Sascha Reynolds 4a9f9b0755 Update plantuml.md to add the actual link. 2017-04-20 11:11:19 +00:00
Sascha Reynolds bb1affdbbd Update plantuml.md to fix wrong introduced in link. 2017-04-19 15:02:37 +00:00
Horacio Sanson d9e9ad2211 PlantUML support for Markdown
Allow rendering of PlantUML diagrams in Markdown documents using fenced blocks:

    ```plantuml
    Bob -> Sara : Hello
    Sara -> Bob : Go away
    ```

Closes: #4048
2017-02-03 08:49:48 +09:00
Horacio Sanson f986b4c4e5 Add support for PlantUML diagrams in Asciidoc.
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
2017-01-12 10:04:52 +00:00