Skip to content

Commit 114b067

Browse files
abrichrclaude
andauthored
fix: Remove unsupported style separators from Mermaid subgraph declarations (#974)
GitHub's Mermaid renderer doesn't support the `:::` style separator on subgraph declarations, causing parse errors. Removed `:::futureBlock` from ProcessMining subgraph and `:::safetyBlock` from SafetyGate subgraph. The individual nodes within these subgraphs still retain their styles (e.g., `:::future`), so visual styling is preserved where supported. Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 5939c3d commit 114b067

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ flowchart TB
151151
LOADER --> TRAIN --> CKPT
152152
end
153153
154-
subgraph ProcessMining["Process Mining"]:::futureBlock
154+
subgraph ProcessMining["Process Mining"]
155155
ABSTRACT["Abstract"]:::future
156156
PATTERNS["Patterns"]:::future
157157
ABSTRACT --> PATTERNS
@@ -175,7 +175,7 @@ flowchart TB
175175
GROUND --> ACT
176176
end
177177
178-
subgraph SafetyGate["Safety Gate"]:::safetyBlock
178+
subgraph SafetyGate["Safety Gate"]
179179
VALIDATE["Validate"]
180180
CONFIRM["Confirm"]:::future
181181
VALIDATE --> CONFIRM

0 commit comments

Comments
 (0)