Skip to content
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

subgraph error fix #136

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/24_reference/mermaid-cheat-sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,29 +216,29 @@ end
Example:
~~~markdown
graph TB
c1 --> a2
c1 -> a2
subgraph one
a1 --> a2
a1 -> a2
end
subgraph two
b1 --> b2
b1 -> b2
end
subgraph three
c1 --> c2
c1 -> c2
end
~~~
<div class="mermaid">
graph TB;
subgraph one;
a1 --> a2;
a1 -> a2;
end;
subgraph two;
b1 --> b2;
b1 -> b2;
end;
subgraph three;
c1 --> c2;
c1 -> c2;
end;
c1 --> a2;
c1 -> a2;
</div>

## 2. Sequence Diagrams
Expand Down