chore: simplify mermaid graph for stable render

This commit is contained in:
“Naeel”
2026-07-20 07:01:04 +04:00
parent 1208104f77
commit 9fb23af151
+3 -10
View File
@@ -3,9 +3,8 @@
Ниже mermaid-диаграмма «чип» с входными и выходными ножками.
```mermaid
flowchart LR
subgraph Inputs [Входные параметры]
direction TB
graph LR
subgraph Inputs
I1[param_a]
I2[param_b]
I3[param_c]
@@ -18,8 +17,7 @@ flowchart LR
PG["Postgres\n(БД)"]
subgraph Outputs [Выходные параметры]
direction TB
subgraph Outputs
O1[result_x]
O2[result_y]
O3[report_z]
@@ -54,9 +52,4 @@ flowchart LR
O3 --> LUCEE
O6 --> LUCEE
O8 --> LUCEE
classDef chip fill:#f8f9fa,stroke:#333,stroke-width:2px
classDef app fill:#eef6ff,stroke:#1f78b4,stroke-width:1.5px
class PG chip
class LUCEE app
```