Mermaid extension for Python-Markdown. Replaces mermaid tagged code blocks with div elements to be rendered by the Mermaid JavaScript library. The JavaScript itself that is required for rendering of the graphs is not inserted. The library can be acquired from a CDN or npm for example.
pip install markdown-mermaidThis would be replaced:
```mermaid
a -> b
```
With this:
<div class="mermaid">
a -> b
</div>