Changed node labels from 'Node X (relay-list.txt)' to simply 'Relay X' for cleaner visualization. Also updated Concepts section to use 'Relay' terminology consistently throughout the documentation.
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
graph TD
|
|
Node1["🖥️ Relay 1"]
|
|
Node2["🖥️ Relay 2"]
|
|
Node3["🖥️ Relay 3"]
|
|
|
|
%% Social.org instances with icons
|
|
Social1_1["📄 social.org"]
|
|
Social1_2["📄 social.org"]
|
|
Social2_1["📄 social.org"]
|
|
Social2_2["📄 social.org"]
|
|
Social3_1["📄 social.org"]
|
|
Social3_2["📄 social.org"]
|
|
|
|
%% Node to social.org connections
|
|
Social1_1 -->|"⚓ Connects"| Node1
|
|
Social1_2 -->|"⚓ Connects"| Node1
|
|
Social2_1 -->|"⚓ Connects"| Node2
|
|
Social2_2 -->|"⚓ Connects"| Node2
|
|
Social3_1 -->|"⚓ Connects"| Node3
|
|
Social3_2 -->|"⚓ Connects"| Node3
|
|
|
|
%% Bidirectional connections between nodes
|
|
Node1 <-.->|"👥 Share Feeds"| Node2
|
|
Node2 <-.->|"👥 Share Feeds"| Node3
|
|
Node1 <-.->|"👥 Share Feeds"| Node3
|
|
|
|
%% Modern color scheme with gradients
|
|
classDef socialStyle fill:#667eea,stroke:#764ba2,stroke-width:3px,color:#fff,font-weight:bold
|
|
classDef nodeStyle fill:#f093fb,stroke:#f5576c,stroke-width:3px,color:#fff,font-weight:bold
|
|
|
|
%% Apply styles
|
|
class Social1_1,Social1_2,Social2_1,Social2_2,Social3_1,Social3_2 socialStyle
|
|
class Node1,Node2,Node3 nodeStyle
|