User Tools

Site Tools


wiki:syntax:plantuml

Plant UML

Plant UML Parer Plugin

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

With PlantUML, you can draw:

  • sequence diagram,
  • use case diagram,
  • class diagram,
  • activity diagram,
  • component diagram,
  • state diagram,
  • object diagram.
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:

AliceAliceBobBobAuthentication RequestAuthentication ResponseAnother authentication Requestanother authentication Response

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>
wiki/syntax/plantuml.txt · Last modified: Sunday, July 16, 2023 11:38 PM by Nathan C. McGuire