Skip to content

Commit

Permalink
Merge pull request #136 from World-of-Workflows/Jim-edits9July
Browse files Browse the repository at this point in the history
subgraph error fix
  • Loading branch information
jimcantor committed Jul 10, 2024
2 parents 24bb841 + ae8e615 commit 217a98f
Showing 1 changed file with 8 additions and 8 deletions.
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

0 comments on commit 217a98f

Please sign in to comment.