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
Markdown lists are not supported in Mermaid diagrams. When using a Markdown list in a diagram, you will see the error Unsupported markdown: list
Unsupported markdown: list
Example with '-'
flowchart LR A[Node 1] --> B["`- Line1 - Line 2 - Line 3`"]
Example with '*'
flowchart LR A[Node 1] --> B["`* Line1 * Line 2 * Line 3`"]
A workaround is not to use characters like • or -:
•
-
flowchart LR A[Node 1] --> B["`• Line1 • Line 2 • Line 3`"]
is rendered as
flowchart LR A[Node 1] --> B["`- Line1 - Line 2 - Line 3`"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Markdown lists are not supported in Mermaid diagrams. When using a Markdown list in a diagram, you will see the error
Unsupported markdown: list
Steps to reproduce
Example with '-'
Unsupported markdown: list
when the graph is rendered:Example with '*'
Unsupported markdown: list
when the graph is rendered:Setup
Workaround
A workaround is not to use characters like
•
or-
:is rendered as
is rendered as
The text was updated successfully, but these errors were encountered: