You can now create and display Mermaid charts directly within a case.
Mermaid diagrams allow you to quickly build flowcharts, sequence diagrams, state diagrams, and more. Create them using the /mermaid formatting command in a case description, comment, or note block. You can also paste the mermaid markdown syntax.
Example syntax:
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```