title | parent | has_children | nav_order |
---|---|---|---|
Diagrams |
Editing |
true |
1 |
Diagrams can be added directly inside the markdown files.
To add a PlantUML diagram, simply type the PlantUML code inside the PlantUML tags @``startuml
and @enduml
or add inline code with the plantuml! directive. See the link at the end of this page for the source.
@startuml Alice -> Bob: Hi Bob --> Alice: Hi there @enduml
Alice -> Bob: Hi again
Bob --> Alice: Hi there, again!
You can also add mermaid diagrams, using the mermaid! directive in inline code
graph TD;
A-->B;
A-->C;