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 # Example Render Test
```mermaid ```mermaid
graph LR graph TD;
A[Start] --> B{Ist es gut?} A-->B;
B -->|Ja| C[Gut] A-->C;
B -->|Nein| D[Schlecht] B-->D;
C --> E[Ende] C-->D;
D -->