Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 651 Bytes

diagrams.md

File metadata and controls

39 lines (25 loc) · 651 Bytes
title parent has_children nav_order
Diagrams
Editing
true
1

Adding diagrams

Diagrams can be added directly inside the markdown files.

PlantUML

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;