-
I want to write an admonition block in my markdown file, and I want it to be well rendered in both VSCode markdown preview window and on docsify webpage. But till now, I can only make either one sucessful, while the other one fails to render. For example, by using So how can I render an admonition block in both ways under the same syntax? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @pbjacob . I think the workaround is converting the syntax gap by hook.beforeEach((text)=> text.replace(/!!!\s*(.*)/g, '!> $1 ')) |
Beta Was this translation helpful? Give feedback.
Hi @pbjacob . I think the workaround is converting the syntax gap by
docsify hook
. i.e.