-
Notifications
You must be signed in to change notification settings - Fork 219
Closed
Labels
enhancementNew feature or requestNew feature or requestmore-info-requiredMore information is required to fix the issueMore information is required to fix the issue
Description
Describe the solution you'd like
support mermaid
Describe alternatives you've considered
The conf.py I used to make work mermaid with recommonmark:
$ tail conf.py
extensions = [ 'recommonmark', 'sphinxcontrib.mermaid']
from recommonmark.transform import AutoStructify
def setup(app):
app.add_transform(AutoStructify)
$
This mermaid is rendered
```mermaid::
graph LR
a --> b
\```
Note that the above need to have a new line after mermaid:: and graph need to start with a space.
endolith
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestmore-info-requiredMore information is required to fix the issueMore information is required to fix the issue