mjbvz / vscode-markdown-mermaid

Adds Mermaid diagram and flowchart support to VS Code's builtin markdown preview
https://marketplace.visualstudio.com/items?itemName=bierner.markdown-mermaid
MIT License
633 stars 114 forks source link

<tag> is not displayed in flow charts #193

Open ThomasBleijendaal opened 1 year ago

ThomasBleijendaal commented 1 year ago

I've noticed some discrepancies between this plugin and how an online viewer handles things like &lt;tag&gt;:

This code:

flowchart TD
    endpoint(["This has a &lt;tag&gt;"]) --> works

should render like:

flowchart TD
    endpoint(["This has a &lt;tag&gt;"]) --> works

But in this extension this is rendered as

image