testing https://github.blog/changelog/2022-02-28-gists-now-support-mermaid-diagrams/
Here is a simple flow chart:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
testing https://github.blog/changelog/2022-02-28-gists-now-support-mermaid-diagrams/
Here is a simple flow chart:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
Does sphinxcontrib-mermaid syntax ```{mermaid} work? I think not.
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
However I think it's possible to drop the braces with fence_as_directive config 🤷♂️ which is better for interop in any case.
comment test:
graph TD; A-->B; A-->C; B-->D; C-->D;