From 08b5938cf11d857ac098d45afdec334ef311625f Mon Sep 17 00:00:00 2001 From: Richard Abrich Date: Sat, 17 Jan 2026 00:18:23 -0500 Subject: [PATCH] fix: Remove unsupported style separators from Mermaid subgraph declarations 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 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fdb66a053..8bffd41f5 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ flowchart TB LOADER --> TRAIN --> CKPT end - subgraph ProcessMining["Process Mining"]:::futureBlock + subgraph ProcessMining["Process Mining"] ABSTRACT["Abstract"]:::future PATTERNS["Patterns"]:::future ABSTRACT --> PATTERNS @@ -175,7 +175,7 @@ flowchart TB GROUND --> ACT end - subgraph SafetyGate["Safety Gate"]:::safetyBlock + subgraph SafetyGate["Safety Gate"] VALIDATE["Validate"] CONFIRM["Confirm"]:::future VALIDATE --> CONFIRM