Skip to content

Commit

Permalink
Remove quotes to prevent Markdown from interpreting as Markdown list
Browse files Browse the repository at this point in the history
  • Loading branch information
eecavanna committed Dec 21, 2024
1 parent 1d3d003 commit 3ae48e3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,13 @@ with that Issue, (3) make changes on that branch, and (4) create a Pull Request

```mermaid
flowchart LR
a("1. Create issue")
b("2. Create branch")
c("3. Make changes on branch")
d("4. Create pull request")
%% Note: The labels are not wrapped in quotes. When wrapped in quotes, GitHub interprets them as
%% Markdown list items, which Mermaid does not allow in its diagrams.
%% Reference: https://github.com/mermaid-js/mermaid/issues/6099
a(1. Create issue)
b(2. Create branch)
c(3. Make changes on branch)
d(4. Create pull request)
a --> b --> c --> d
```
Expand Down

0 comments on commit 3ae48e3

Please sign in to comment.