User Tools

Site Tools


kb:bestpractices:documentation:wiki:uml

PlantUML

Our Dokuwiki supports generating PlantUML diagrams from markdown syntax. More information on the UML syntax can be found at https://plantuml.com/

Example 1

  <uml>
  @startuml
  hide empty description
  [*] --> State1
  State1 --> [*]
  State1 : this is a string
  State1 : this is another string
  
  State1 -> State2
  State2 --> [*]
  @enduml
  </uml>

is represented as

State1this is a stringthis is another stringState2


Example 2

Useful presentation for folders and files:

  <uml>
  @startsalt
  {
  {T
   + RepoRoot
   ++ builds
   +++ application
   +++ distribution
   +++ installer
  }
  }
  @endsalt
  </uml>

is represented as

RepoRootbuildsapplicationdistributioninstaller

kb/bestpractices/documentation/wiki/uml.txt · Last modified: 2024/07/02 15:30 by joerg.hampel