Skip to content

Commit

Permalink
Merge pull request #138 from World-of-Workflows/Jim-edits9July
Browse files Browse the repository at this point in the history
Update mermaid-cheat-sheet.md
  • Loading branch information
jimcantor committed Jul 10, 2024
2 parents 3cb73ca + c0d942e commit 6035f06
Showing 1 changed file with 5 additions and 17 deletions.
22 changes: 5 additions & 17 deletions docs/24_reference/mermaid-cheat-sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,31 +220,19 @@ 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;
end;
subgraph two;
b1 -> b2;
end;
subgraph three;
c1 -> c2;
end;
c1 -> a2;
</div>
<div class="mermaid">graph TB; subgraph one; a1 --> a2; end; subgraph two; b1 --> b2; end; subgraph three; c1 --> c2; end; c1 --> a2;</div>

## 2. Sequence Diagrams

Expand Down

0 comments on commit 6035f06

Please sign in to comment.