mkdocs-material/docs/reference/diagrams.md

263 lines
6.1 KiB
Markdown
Raw Normal View History

---
template: overrides/main.html
2022-03-27 15:01:30 +03:00
icon: material/graph-outline
---
# Diagrams
Diagrams help to communicate complex relationships and interconnections between
different technical components, and are a great addition to project
2021-10-03 21:28:52 +03:00
documentation. Material for MkDocs integrates with [Mermaid.js], a very
popular and flexible solution for drawing diagrams.
2021-10-03 21:28:52 +03:00
[Mermaid.js]: https://mermaid-js.github.io/mermaid/
## Configuration
[:octicons-tag-24: 8.2.0][Diagrams support] ·
2021-10-10 18:39:53 +03:00
:octicons-beaker-24: Experimental
2021-10-03 21:28:52 +03:00
This configuration enables native support for [Mermaid.js] diagrams. Material
for MkDocs will automatically initialize the JavaScript runtime when a page
includes a `mermaid` code block:
``` yaml
markdown_extensions:
2021-01-02 18:43:46 +03:00
- pymdownx.superfences:
custom_fences:
- name: mermaid
2021-07-18 18:50:45 +03:00
class: mermaid
2021-01-05 20:50:08 +03:00
format: !!python/name:pymdownx.superfences.fence_code_format
```
2021-10-05 00:36:31 +03:00
No further configuration is necessary. Advantages over a custom integration:
2021-10-03 21:28:52 +03:00
- [x] Works with [instant loading] without any additional effort
- [x] Diagrams automatically use fonts and colors defined in `mkdocs.yml`[^1]
2021-10-10 13:19:14 +03:00
- [x] Fonts and colors can be customized with [additional style sheets]
- [x] Support for both, light and dark color schemes _try it on this page!_
[^1]:
2021-10-03 21:28:52 +03:00
While all [Mermaid.js] features should work out-of-the-box, Material for
2021-10-05 00:36:31 +03:00
MkDocs will currently only adjust the fonts and colors for flowcharts,
sequence diagrams, class diagams, state diagrams and entity relationship
diagrams.
[Diagrams support]: https://github.com/squidfunk/mkdocs-material/releases/tag/8.2.0
2021-10-03 21:28:52 +03:00
[instant loading]: ../setup/setting-up-navigation.md#instant-loading
2021-10-10 13:19:14 +03:00
[additional style sheets]: ../customization.md#additional-css
## Usage
2021-07-18 18:50:45 +03:00
### Using flowcharts
2021-10-03 21:28:52 +03:00
[Flowcharts] are diagrams that represent workflows or processes. The steps
2021-07-18 18:50:45 +03:00
are rendered as nodes of various kinds and are connected by edges, describing
the necessary order of steps:
2022-01-11 12:19:33 +03:00
```` markdown title="Flow chart"
``` mermaid
graph LR
A[Start] --> B{Error?};
B -->|Yes| C[Hmm...];
C --> D[Debug];
D --> B;
B ---->|No| E[Yay!];
```
````
<div class="result" markdown>
``` mermaid
graph LR
A[Start] --> B{Error?};
B -->|Yes| C[Hmm...];
C --> D[Debug];
D --> B;
B ---->|No| E[Yay!];
```
</div>
2021-10-03 21:28:52 +03:00
[Flowcharts]: https://mermaid-js.github.io/mermaid/#/flowchart
2021-07-18 18:50:45 +03:00
### Using sequence diagrams
2021-10-03 21:28:52 +03:00
[Sequence diagrams] describe a specific scenario as sequential interactions
2021-07-18 18:50:45 +03:00
between multiple objects or actors, including the messages that are exchanged
between those actors:
2021-07-18 18:50:45 +03:00
2022-01-11 12:19:33 +03:00
```` markdown title="Sequence diagram"
2021-07-18 18:50:45 +03:00
``` mermaid
sequenceDiagram
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
```
````
<div class="result" markdown>
2021-07-18 18:50:45 +03:00
``` mermaid
sequenceDiagram
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
```
</div>
2021-10-03 21:28:52 +03:00
[Sequence diagrams]: https://mermaid-js.github.io/mermaid/#/sequenceDiagram
2021-07-18 18:50:45 +03:00
### Using state diagrams
2021-10-03 21:28:52 +03:00
[State diagrams] are a great tool to describe the behavior of a system,
2021-07-18 18:50:45 +03:00
decomposing it into a finite number of states, and transitions between those
states:
2021-07-18 18:50:45 +03:00
2022-01-11 12:19:33 +03:00
```` markdown title="State diagram"
2021-07-18 18:50:45 +03:00
``` mermaid
stateDiagram-v2
state fork_state <<fork>>
[*] --> fork_state
fork_state --> State2
fork_state --> State3
state join_state <<join>>
State2 --> join_state
State3 --> join_state
join_state --> State4
State4 --> [*]
2021-07-18 18:50:45 +03:00
```
````
<div class="result" markdown>
2021-07-18 18:50:45 +03:00
``` mermaid
stateDiagram-v2
state fork_state <<fork>>
[*] --> fork_state
fork_state --> State2
fork_state --> State3
state join_state <<join>>
State2 --> join_state
State3 --> join_state
join_state --> State4
State4 --> [*]
2021-07-18 18:50:45 +03:00
```
</div>
2021-10-03 21:28:52 +03:00
[State diagrams]: https://mermaid-js.github.io/mermaid/#/stateDiagram
2021-07-18 18:50:45 +03:00
### Using class diagrams
2021-10-03 21:28:52 +03:00
[Class diagrams] are central to object oriented programing, describing the
2021-07-18 18:50:45 +03:00
structure of a system by modelling entities as classes and relationships between
them:
2021-07-18 18:50:45 +03:00
2022-01-11 12:19:33 +03:00
```` markdown title="Class diagram"
2021-07-18 18:50:45 +03:00
``` mermaid
classDiagram
Person <|-- Student
Person <|-- Professor
Person : +String name
Person : +String phoneNumber
Person : +String emailAddress
Person: +purchaseParkingPass()
Address "1" <-- "0..1" Person:lives at
class Student{
+int studentNumber
+int averageMark
+isEligibleToEnrol()
+getSeminarsTaken()
}
class Professor{
+int salary
}
class Address{
+String street
+String city
+String state
+int postalCode
+String country
-validate()
+outputAsLabel()
}
```
````
<div class="result" markdown>
2021-07-18 18:50:45 +03:00
``` mermaid
classDiagram
Person <|-- Student
Person <|-- Professor
Person : +String name
Person : +String phoneNumber
Person : +String emailAddress
Person: +purchaseParkingPass()
Address "1" <-- "0..1" Person:lives at
class Student{
+int studentNumber
+int averageMark
+isEligibleToEnrol()
+getSeminarsTaken()
}
class Professor{
+int salary
}
class Address{
+String street
+String city
+String state
+int postalCode
+String country
-validate()
+outputAsLabel()
}
```
</div>
2021-10-03 21:28:52 +03:00
[Class diagrams]: https://mermaid-js.github.io/mermaid/#/classDiagram
2021-07-18 18:50:45 +03:00
### Using entity-relationship diagrams
2021-10-03 21:28:52 +03:00
An [entity-relationship diagram] is composed of entity types and specifies
2021-07-18 18:50:45 +03:00
relationships that exist between entities. It describes inter-related things in
a specific domain of knowledge:
2021-07-18 18:50:45 +03:00
2022-01-11 12:19:33 +03:00
```` markdown title="Entity-relationship diagram"
2021-07-18 18:50:45 +03:00
``` mermaid
erDiagram
CUSTOMER ||--o{ ORDER : places
ORDER ||--|{ LINE-ITEM : contains
CUSTOMER }|..|{ DELIVERY-ADDRESS : uses
```
````
<div class="result" markdown>
2021-07-18 18:50:45 +03:00
``` mermaid
erDiagram
CUSTOMER ||--o{ ORDER : places
ORDER ||--|{ LINE-ITEM : contains
CUSTOMER }|..|{ DELIVERY-ADDRESS : uses
```
</div>
2021-10-03 21:28:52 +03:00
[entity-relationship diagram]: https://mermaid-js.github.io/mermaid/#/entityRelationshipDiagram