Replies: 2 comments 3 replies
-
Hi @linonetwo we can achieve the same effect in TiddlyWiki using custom parser and a typed code block. I don't think there is a mime type for Mermaid, so we'd have to make one up. All that is required is for the plugin to register a parser for the mime type.
I appreciate that that is not the same as the familiar fenced code block syntax. We could definitely explore more extensible handling for the optional "type" tag (at the moment, the highlight plugin just overwrites the core codeblock implementation with a custom one; we should consider allowing multiple plugins to register codeblock types. |
Beta Was this translation helpful? Give feedback.
-
Update: Github can embed mermaid too! https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/ graph
A --> B
B --> C
C --> A
D --> C
|
Beta Was this translation helpful? Give feedback.
-
In obsidian, some plugin can do
But in tid we have to
If we can pass codeblock content to widget with the same name, we can do what obsidian can do.
Beta Was this translation helpful? Give feedback.
All reactions