Skip to content

Commit

Permalink
docs: Fix "Unsupported markdown: list" mermaid diagram errors
Browse files Browse the repository at this point in the history
Diagrams on the 'Task Dependencies' page were broken by Obsidian's
update to Mermaid 11.

Fixes #3360
  • Loading branch information
claremacrae committed Mar 1, 2025
1 parent bf5e65b commit 959c04a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/Getting Started/Task Dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ flowchart BT
classDef TASK stroke-width:3px,font-family:monospace;
2["- [ ] do this first πŸ†” abcdef"]:::TASK
1["- [ ] do this after first β›” abcdef"]:::TASK
2["\- [ ] do this first πŸ†” abcdef"]:::TASK
1["\- [ ] do this after first β›” abcdef"]:::TASK
1-- depends on --> 2
linkStyle default stroke:gray
Expand All @@ -51,8 +51,8 @@ flowchart BT
classDef TASK stroke-width:3px,font-family:monospace;
2["- [ ] do this first  [id:: abcdef]"]:::TASK
1["- [ ] do this after first  [dependsOn:: abcdef]"]:::TASK
2["\- [ ] do this first  [id:: abcdef]"]:::TASK
1["\- [ ] do this after first  [dependsOn:: abcdef]"]:::TASK
1-- depends on --> 2
linkStyle default stroke:gray
Expand Down Expand Up @@ -274,8 +274,8 @@ is not blocked
>
> classDef TASK stroke-width:3px,font-family:monospace;
>
> 2["- [ ] this is blocking πŸ†” abcdef"]:::TASK
> 1["- [ ] this is blocked&nbsp β›” abcdef"]:::TASK
> 2["\- [ ] this is blocking πŸ†” abcdef"]:::TASK
> 1["\- [ ] this is blocked&nbsp β›” abcdef"]:::TASK
> 1-- depends on --> 2
>
> linkStyle default stroke:gray
Expand All @@ -289,8 +289,8 @@ is not blocked
>
> classDef TASK stroke-width:3px,font-family:monospace;
>
> 4["- [ ] not blocking πŸ†” abcdef"]:::TASK
> 3["- [x] not blocked&nbsp β›” abcdef"]:::TASK
> 4["\- [ ] not blocking πŸ†” abcdef"]:::TASK
> 3["\- [x] not blocked&nbsp β›” abcdef"]:::TASK
> 3-- depends on --> 4
>
> linkStyle default stroke:gray
Expand All @@ -304,9 +304,9 @@ is not blocked
>
> classDef TASK stroke-width:3px,font-family:monospace;
>
> 5["- [x] not blocking πŸ†” abcdef"]:::TASK
> 4["- [ ] blocking πŸ†” ghijkl"]:::TASK
> 3["- [ ] blocked β›” abcdef,ghijkl"]:::TASK
> 5["\- [x] not blocking πŸ†” abcdef"]:::TASK
> 4["\- [ ] blocking πŸ†” ghijkl"]:::TASK
> 3["\- [ ] blocked β›” abcdef,ghijkl"]:::TASK
> 3-- depends on --> 5
> 3-- depends on --> 4
>
Expand Down

0 comments on commit 959c04a

Please # to comment.