Table of Contents

plantumlparser Plugin

Compatible with DokuWiki

  • 2024-02-06 "Kaos" unknown
  • 2023-04-04 "Jack Jackrum" yes
  • 2022-07-31 "Igor" yes
  • 2020-07-29 "Hogfather" yes

plugin Create UML diagrams

Last updated on
2023-11-02
Provides
Syntax
Repository
Source
Conflicts with
plantuml

Similar to graphviz, plantuml, seqdia

Tagged with diagram, uml

Installation

Search and install the plugin using the Extension Manager. Refer to Plugins on how to install plugins manually.

There is no need for the DokuWiki server to have internet access for this to work, just the browser viewing the page needs internet access.

Examples/Usage

Please refer to http: plantuml.com do get full description of the PlantUML syntax.

With PlantUML, you can draw:

A typical PlantUML diagram is enclosed by @startuml and @enduml. Replace these by <uml> and </uml>.

This block:

<uml>
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
</uml>

renders this:

There is also a toolbar button that is added to quickly add the tags into the page.

Syntax

Whatever is inside the uml tags will be displayed as a SVG on the wiki page:

<uml>
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
</uml>

Change Log