Mermaid Diagram Test¶
This page demonstrates that Mermaid diagrams are working correctly in the DataRackNews documentation.
Simple Flowchart¶
graph TD
A[Start] --> B{Is it working?}
B -->|Yes| C[🎉 Success!]
B -->|No| D[Debug]
D --> B
C --> E[Deploy to production]
PA2 Enhancement Flow¶
sequenceDiagram
participant U as User
participant G as Gradio UI
participant E as Equinix Scraper
participant W as Website
U->>G: Search "Paris PA2"
G->>E: Extract PA2 data
E->>W: GET facility page
W->>E: HTML response
E->>G: Structured data
G->>U: Display results
System Architecture¶
graph TB
subgraph "Frontend"
UI[Gradio Web Interface]
end
subgraph "Backend"
ES[Equinix Scraper]
GS[General Scraper]
end
subgraph "Data"
PG[(PostgreSQL)]
RD[(Redis)]
end
UI --> ES
UI --> GS
ES --> PG
GS --> PG
ES --> RD
GS --> RD
If you can see the diagrams above, Mermaid is working perfectly! 🚀