From 22434976219d4ac569bcd2aeb9175573a5e428af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90=E1=BA=B7ng=20Xu=C3=A2n=20Danh?= Date: Wed, 1 Apr 2026 17:25:50 +0700 Subject: [PATCH] fix: escape mermaid node labels to prevent rendering errors --- docs/archie.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/archie.md b/docs/archie.md index dcbbe16..454c105 100644 --- a/docs/archie.md +++ b/docs/archie.md @@ -22,12 +22,12 @@ This walks you through adding the workflow to your repository. ```mermaid graph LR - A[/archie command] --> B[Fetch issue or PR details] - B --> C[Extract relationships and concepts] - C --> D[Select diagram types] - D --> E[Generate 1-3 Mermaid diagrams] - E --> F[Validate syntax] - F --> G[Post comment with diagrams] + A["/archie command"] --> B["Fetch issue or PR details"] + B --> C["Extract relationships and concepts"] + C --> D["Select diagram types"] + D --> E["Generate 1-3 Mermaid diagrams"] + E --> F["Validate syntax"] + F --> G["Post comment with diagrams"] ``` Archie fetches the full content of the triggering issue or PR, identifies key entities and relationships, picks the most appropriate Mermaid diagram type (flowchart, sequence, class diagram, gantt, etc.), and posts a well-formatted comment with between 1 and 3 diagrams.