diff --git a/mermaid/index.html b/mermaid/index.html new file mode 100644 index 0000000..d59e216 --- /dev/null +++ b/mermaid/index.html @@ -0,0 +1,36 @@ + + + + + + Document + + + Mermaid diagram + +

1st Diagram

+
+        graph TD
+        A[Client] --> B[Load Balancer]
+        B --> C[Server01]
+        B --> D[Server02]
+    
+ +

2nd Diagram

+
+        graph TD
+        A[Client] --> |tcp_123| B
+        B(Load Balancer)
+        B --> |tcp_456| C[Server1]
+        B --> |tcp_456| C[Server2]
+    
+ + + + + + + \ No newline at end of file