fix mermaid
This commit is contained in:
parent
c01c510be7
commit
d7cc366d15
|
|
@ -74,7 +74,7 @@ Let's see how it flows:
|
|||
flowchart TD
|
||||
review[Review Expense] -->|approved| payment[Process Payment]
|
||||
review -->|needs_revision| revise[Revise Report]
|
||||
review -->|rejected| finish[End Process]
|
||||
review -->|rejected| finish[Finish Process]
|
||||
|
||||
revise --> review
|
||||
payment --> finish
|
||||
|
|
@ -146,8 +146,8 @@ order_pipeline.run(shared_data)
|
|||
This creates a clean separation of concerns while maintaining a clear execution path:
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
|
||||
flowchart LR
|
||||
subgraph order_pipeline[Order Pipeline]
|
||||
subgraph paymentFlow["Payment Flow"]
|
||||
A[Validate Payment] --> B[Process Payment] --> C[Payment Confirmation]
|
||||
end
|
||||
|
|
@ -162,4 +162,5 @@ flowchart TD
|
|||
|
||||
paymentFlow --> inventoryFlow
|
||||
inventoryFlow --> shippingFlow
|
||||
end
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in New Issue