We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a placeholder issue for me and others.
My site currently supports light and dark modes. MermaidJS does not support that natively, so I am seeking an alternative.
I was thinking of having two renders per backtick mermaidjs.
mermaidjs
For example,
```mermaid .... \```
Would render to:
<pre class="mermaid mermaid-light"> <!--- light theme render --> </pre> <pre class="mermaid mermaid-dark"> <!--- dark theme render --> </pre> <style> @media (prefers-color-scheme: light) { .mermaid.mermaid-dark { display: none; } .mermaid.mermaid-light { display: block; } } @media (prefers-color-scheme: dark) { .mermaid.mermaid-dark { display: block; } .mermaid.mermaid-light { display: none; } } </style>
I'd like to explore this with the plugin.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a placeholder issue for me and others.
My site currently supports light and dark modes. MermaidJS does not support that natively, so I am seeking an alternative.
I was thinking of having two renders per backtick
mermaidjs
.For example,
Would render to:
I'd like to explore this with the plugin.
The text was updated successfully, but these errors were encountered: