Exemplo com diagramas Mermaid JS

This commit is contained in:
Jurandy Soares
2026-03-17 16:08:53 -03:00
parent 3311fe18ef
commit 5cc7198043
6 changed files with 56 additions and 7 deletions
+20
View File
@@ -0,0 +1,20 @@
(aula:2026-03-17)=
# Aula de 17/03/2026
Diagramas com {cite:t}`mermaidjs`.
```{mermaid}
---
title: Simple sample
---
stateDiagram-v2
[*] --> Still
Still --> [*]
Still --> Moving
Moving --> Still
Moving --> Crash
Crash --> [*]
```