bra1nDump / show-me-chatgpt-plugin

Create and edit diagrams in ChatGPT
https://showme.redstarplugin.com
675 stars 70 forks source link

Special characters in label should be escaped #34

Open selfboot opened 1 year ago

selfboot commented 1 year ago

In Mermaid syntax, node labels cannot contain parentheses and comma. This is because the Mermaid syntax parser treats parentheses as special characters.

Error:

graph TB
  E[A(demo)] -->|AA| F[Succ]
  G[B,test] -->|BB | N[B]

Succ:

graph TB
  E["A(demo)"] -->|AA| F[Succ]
  G["B,test"] -->|BB | N[B]
bra1nDump commented 1 year ago

We have this in the manifest prompt, sometimes it still makes mistakes. Don't think we can do anything with it at the moment

selfboot commented 1 year ago

We have this in the manifest prompt, sometimes it still makes mistakes. Don't think we can do anything with it at the moment

Do you mean this line in the code?