Commit graph

17 commits

Author SHA1 Message Date
Takuya Noguchi
da390ea44e Fix Markdown example for PlantUML docs
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2019-07-11 20:30:41 +09:00
Marcel Amirault
4633604424 Fix whitespace in many administration docs
Many code blocks are 4spaced, and they render in GitLab
without coloring as a result, even though they are
fenced with a language label. If in a list, other items
will render as being in a code block too, even if not
meant to. This fixes all these issues for many admin
docs (part 2)
2019-07-10 18:23:55 +00:00
Marcel Amirault
518e2b81e3 Update redirected links in CE part 1
First MR in a series updating all redirected links
in CE documentation to the destination URLs
2019-07-08 00:41:33 +00:00
Sara Ahbabou
2ffbaa6d2f Updated openjdk version from 7 to 8 2019-05-29 14:01:43 +00:00
Elan Ruusamäe
9ecc701aa5 doc: administration/planutml: update instructions for setting dialogs 2019-05-09 08:43:03 +00:00
Evan Read
47fb1c5235 Remove consecutive blank lines from markdown files
For the sake of consistency, removes any extraneous
consecutive blank lines from the doc suite.
2019-02-18 09:36:13 +00:00
Koichiro Mikami
0c3373b775 Specification change: Fix asciidoctor block context. 2018-10-11 08:58:58 +09:00
Brett Walker
b0be58a1b3 Resolve "CE documentation is not CommonMark compliant" 2018-09-06 16:52:18 +00:00
morph027
9d4324e729 Added PlantUML server using docker 2018-02-02 10:47:33 +00:00
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