You can now render Mermaid diagrams directly in notes, Workbench, and AI agents.
Visualize your data using a mermaid code block to create flowcharts, sequence diagrams, state diagrams, and more. Navigate complex visuals using the diagram's built-in controls.
Example syntax:
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```