You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With mermaid, you can generate (SVG) diagrams and flowcharts via Markdown code blocks.
We should make it possible to do to something like the following:
```svg
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
One caveat: this library is JavaScript-based, and generates figures client-side.
What we would want is a way to generate SVG images when our article is being compiled, so that no additional JS is needed client-side.
We may be able to achieve this in a similar way as SsKaTeX does server-side KaTeX by running JS internally.
The text was updated successfully, but these errors were encountered:
With mermaid, you can generate (SVG) diagrams and flowcharts via Markdown code blocks.
We should make it possible to do to something like the following:
One caveat: this library is JavaScript-based, and generates figures client-side.
What we would want is a way to generate SVG images when our article is being compiled, so that no additional JS is needed client-side.
We may be able to achieve this in a similar way as SsKaTeX does server-side KaTeX by running JS internally.
The text was updated successfully, but these errors were encountered: