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
I am very new to this. I am trying to use mermaid to draw graphs in mdx. The minimum working example for mermaid is:
graph TD; A-->B; A-->C; B-->D; C-->D;
Creating a jsx component following this, it should translate to:
<Mermaid id='someid' content={`graph TD; A-->B; A-->C; B-->D; C-->D; `}/>
However, this wont work because all --> are somewhat blindly translated to */ here.
-->
*/
Is there any workaround?
The text was updated successfully, but these errors were encountered:
Sorry about that, it's my naive implementation of comments. There's a PR pending which fixes that.
Sorry, something went wrong.
Resolved with #260 and released in v0.15.3-0.
No branches or pull requests
I am very new to this. I am trying to use mermaid to draw graphs in mdx.
The minimum working example for mermaid is:
Creating a jsx component following this, it should translate to:
However, this wont work because all
-->
are somewhat blindly translated to*/
here.Is there any workaround?
The text was updated successfully, but these errors were encountered: