Jump to content

MermaidTest: Difference between revisions

From Ghost of Yotei Wiki
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 1: Line 1:
graph TD
<mermaid>
   A[Start] --> B{Is it working?}
graph TD;
   B -->|Yes| C[Great!]
   A[Start] --> B{Is it working?};
   B -->|No| D[Check logs]
   B -- Yes --> C[Great!];
   B -- No --> D[Check logs];
</mermaid>

Revision as of 06:18, 18 August 2025

<mermaid> graph TD;

 A[Start] --> B{Is it working?};
 B -- Yes --> C[Great!];
 B -- No --> D[Check logs];

</mermaid>