Skip to end of banner
Go to start of banner

WIP: PlantUML macro

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Description

The PlantUML macro creates general graphs using the PlantUML language. This language is extremely versatile and powerful, but you can start with a really simple example as shown below, and then gradually improve your knowledge and create more advanced diagrams easily.

PlantUML works with Graphviz versions higher than 2.42.

PlantUML resources

Refer to the PlantUML website to learn more about the language itself and access other resources like guides and examples.



Parameters

Unable to render {include} The included page could not be found.

Examples

These are some very basic examples of what you can achieve easily. For more advanced layouts and formatting, please refer to the PlantUML resources.

Macro Call

Macro Output

{plantuml}
@startuml
!$ab = "foo1"
!$cd = "foo2"
!$ef = $ab + $cd

Alice -> Bob : $ab
Alice -> Bob : $cd
Alice -> Bob : $ef
@enduml
{plantuml}


  • No labels