backmarket-oss / github-mermaid-extension

A browser extension for Chrome, Opera & Firefox that adds Mermaid language support to Github
MIT License
239 stars 65 forks source link

Do not understand nested subgraph #11

Open phuongnd08 opened 5 years ago

phuongnd08 commented 5 years ago

Tried this today, rendered perfectly by https://mermaidjs.github.io/mermaid-live-editor/ yet showing error with the extension:

Code:

```mermaid
graph TD
subgraph "groupA"
  subgraph "groupA1"
    balancer[Balancer] --> backend[Backend]
    balancer --> frontend[Frontend]
  end
end

Render:

![image](https://user-images.githubusercontent.com/184037/60711837-ec6f8b80-9f3f-11e9-909d-4607dc9bc497.png)