From ad53d9ef8b0e68ba5e9b2f2872fba20c9687dfbb Mon Sep 17 00:00:00 2001 From: Aki <80670461+akippnn@users.noreply.github.com> Date: Fri, 9 May 2025 12:06:39 +0800 Subject: [PATCH] fix(README): Fix mermaid.js render by enclosing strings in quotation marks --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7c068fb..faeaacc 100644 --- a/README.md +++ b/README.md @@ -47,18 +47,18 @@ graph TD A --> F(narrative_builder.py); A --> G(solution_presenter.py); - B -- Reads & Caches --> H[financial_concepts.json]; - B -- Reads & Caches --> I[value_ranges.json]; - B -- Reads & Caches --> J[text_snippets.json]; - B -- Reads & Caches --> K[data/names.json]; + B -- "Reads & Caches" --> H["financial_concepts.json"]; + B -- "Reads & Caches" --> I["value_ranges.json"]; + B -- "Reads & Caches" --> J["text_snippets.json"]; + B -- "Reads & Caches" --> K["data/names.json"]; - C -- Uses Constraints From --> I; - C -- Uses Date Functions From --> D; - F -- Uses Actor Names From --> K; - F -- Uses Text Templates From --> J; - G -- Uses Text Templates From --> J; + C -- "Uses Constraints From" --> I; + C -- "Uses Date Functions From" --> D; + F -- "Uses Actor Names From" --> K; + F -- "Uses Text Templates From" --> J; + G -- "Uses Text Templates From" --> J; - subgraph Python Modules + subgraph "Python Modules" A B C @@ -68,11 +68,11 @@ graph TD G end - subgraph Data Files (JSON) - H[building_blocks/financial_concepts.json] - I[data/value_ranges.json] - J[data/text_snippets.json] - K[data/names.json] + subgraph "Data Files (JSON)" + H["building_blocks/financial_concepts.json"] + I["data/value_ranges.json"] + J["data/text_snippets.json"] + K["data/names.json"] end ```