since other markdown interpreters are starting to use the syntax
```language (like ```mermaid ) to render content blocks
to enhance portability of our .md documents i ask:
couldn't markdown-preview-enhanced automatically interpret ```mermaid like it was ```{mermaid} if it's just a single word?
the {} are good if we have to pass parameters (and here only markdown-preview-enhanced can interpret them)
what do you think?
Hi @StefanoCecere @okwolf @8-uh @Michael-Thibault , sorry for my super late reply.
Now both ```mermaid and '''@mermaid will render mermaid graphs. (Same for plantuml, viz, and wavedrom)
If you only want '''@mermaid to work, disable Use standard code fencing for graphs in settings of this package.
Cheers
Thanks @shd101wyy! I was using this syntax for compatibility with the mermaid plugin for GitBook FYI:
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
Most helpful comment
Hi @StefanoCecere @okwolf @8-uh @Michael-Thibault , sorry for my super late reply.
Now both
```mermaidand'''@mermaidwill render mermaid graphs. (Same forplantuml,viz, andwavedrom)If you only want
'''@mermaidto work, disableUse standard code fencing for graphsin settings of this package.Cheers