fix(README): Fix mermaid.js render by enclosing strings in quotation marks

This commit is contained in:
Aki 2025-05-09 12:06:39 +08:00
parent f02f848ada
commit ad53d9ef8b

View File

@ -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
```