Skip to content

Commit 7c5b180

Browse files
authored
Fix mermaid graph syntax in documentation
1 parent 722f198 commit 7c5b180

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

CUSTOMER-SUPPORT.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ Here's the basic flow. It looks simple. It wasn't.
3838

3939
```mermaid
4040
graph TD
41-
subgraph Data Ingestion (Nightly Job)
42-
A[Data Sources] --> B{Scraper};
43-
B --> C{Processor<br>Chunks text};
44-
C --> D{Ollama Client<br>Generates embeddings};
45-
D --> E[LanceDB<br>Vector Store];
41+
subgraph "Data Ingestion (Nightly Job)"
42+
A[Data Sources] --> B{Scraper}
43+
B --> C{Processor<br/>Chunks text}
44+
C --> D{Ollama Client<br/>Generates embeddings}
45+
D --> E[LanceDB<br/>Vector Store]
4646
end
4747
48-
subgraph Live Email Processing
49-
F[New Email] --> G{Email Scanner};
50-
G --> H{Response Generator};
51-
H -- Query --> E;
52-
E -- Context --> H;
53-
H -- Generates --> I[Email Response];
48+
subgraph "Live Email Processing"
49+
F[New Email] --> G{Email Scanner}
50+
G --> H{Response Generator}
51+
H -- Query --> E
52+
E -- Context --> H
53+
H -- Generates --> I[Email Response]
5454
end
5555
```
5656

0 commit comments

Comments
 (0)