Mermaid Diagram Editor
graph LR subgraph V1 A[Start] --> B[Process 1] B --> C{Decision} C -->|Yes| D[Process 2] C -->|No| E[End] C --> A end subgraph V2 direction LR D --> F[Further Process 1] F --> G[Further Process 2] G --> H[End] end style A fill:#f9f,stroke:#333,stroke-width:2px;