-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
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
Flowchart: Link text beginning with lowercase 'o' causes flowchart to break #407
Comments
I can reproduce the issue: This does work: |
I find a workaround: Put the link text inside double quotes then it can have any characters. I still think it is a bug. I will dive into it whenever I have some time. |
|
Or just use space |
mgenereu
pushed a commit
to mgenereu/mermaid
that referenced
this issue
Jun 25, 2022
…yarn/develop/eslint-plugin-tailwindcss-1.16.0 chore(deps-dev): bump eslint-plugin-tailwindcss from 1.15.0 to 1.16.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
E.g.:
<div class='mermaid'>graph LR\n\tstep0(step0)--next-->step1(step1)\n\tstep1--next-->step2(step2)\n\tstep2--next-->step3(step3)\n\tstep3--ok-->DONE((DONE))</div>
results in this output:
Uppercase 'O' works as expected:
code:
<div class='mermaid'>graph LR\n\tstep0(step0)--next-->step1(step1)\n\tstep1--next-->step2(step2)\n\tstep2--next-->step3(step3)\n\tstep3--Ok-->DONE((DONE))</div>
output:
Is this a parser rule? Not starting a link text with lowercase 'o'? If yes, are there any more such rules? Please point me to the relevant documentation.
Thanks.
The text was updated successfully, but these errors were encountered: