FIXED render test mermaid in readme

This commit is contained in:
simon 2024-12-27 15:07:37 +01:00
parent 95881426f4
commit 669f1c255d

View File

@ -34,9 +34,9 @@ They are not used or needed when building with CMake and idf.py.
# Example Render Test
```mermaid
graph LR
A[Start] --> B{Ist es gut?}
B -->|Ja| C[Gut]
B -->|Nein| D[Schlecht]
C --> E[Ende]
D -->
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;