fix(README): Fix mermaid.js render by enclosing strings in quotation marks
This commit is contained in:
parent
f02f848ada
commit
ad53d9ef8b
30
README.md
30
README.md
@ -47,18 +47,18 @@ graph TD
|
|||||||
A --> F(narrative_builder.py);
|
A --> F(narrative_builder.py);
|
||||||
A --> G(solution_presenter.py);
|
A --> G(solution_presenter.py);
|
||||||
|
|
||||||
B -- Reads & Caches --> H[financial_concepts.json];
|
B -- "Reads & Caches" --> H["financial_concepts.json"];
|
||||||
B -- Reads & Caches --> I[value_ranges.json];
|
B -- "Reads & Caches" --> I["value_ranges.json"];
|
||||||
B -- Reads & Caches --> J[text_snippets.json];
|
B -- "Reads & Caches" --> J["text_snippets.json"];
|
||||||
B -- Reads & Caches --> K[data/names.json];
|
B -- "Reads & Caches" --> K["data/names.json"];
|
||||||
|
|
||||||
C -- Uses Constraints From --> I;
|
C -- "Uses Constraints From" --> I;
|
||||||
C -- Uses Date Functions From --> D;
|
C -- "Uses Date Functions From" --> D;
|
||||||
F -- Uses Actor Names From --> K;
|
F -- "Uses Actor Names From" --> K;
|
||||||
F -- Uses Text Templates From --> J;
|
F -- "Uses Text Templates From" --> J;
|
||||||
G -- Uses Text Templates From --> J;
|
G -- "Uses Text Templates From" --> J;
|
||||||
|
|
||||||
subgraph Python Modules
|
subgraph "Python Modules"
|
||||||
A
|
A
|
||||||
B
|
B
|
||||||
C
|
C
|
||||||
@ -68,11 +68,11 @@ graph TD
|
|||||||
G
|
G
|
||||||
end
|
end
|
||||||
|
|
||||||
subgraph Data Files (JSON)
|
subgraph "Data Files (JSON)"
|
||||||
H[building_blocks/financial_concepts.json]
|
H["building_blocks/financial_concepts.json"]
|
||||||
I[data/value_ranges.json]
|
I["data/value_ranges.json"]
|
||||||
J[data/text_snippets.json]
|
J["data/text_snippets.json"]
|
||||||
K[data/names.json]
|
K["data/names.json"]
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user