Mermaid Diagrams

MyST allows users to include various diagrams in their documents using the Mermaid library. For an explanation on how to create diagrams, refer to the Diagram Syntax section of the Mermaid Documentation. Here is an example graph in MyST:

```mermaid
  graph TD;
      A-->B;
      A-->C;
      B-->D;
      C-->D;
```
Connection Error

Figure 6 Mermaid Graph


Last update: 2025-04-02