Demo: convert a sequence diagram for visual editing
Sequence diagrams often start in PlantUML because text is fast to review. Converting to draw.io helps product, support, or architecture teams edit labels and spacing without learning PlantUML.
- Keep participants explicit and avoid heavy macros in the conversion input.
- Convert one scenario per file rather than an entire system flow.
- After conversion, adjust lifeline spacing and annotations in diagrams.net.
@startuml
actor User
participant Web
participant API
database DB
User -> Web: Submit order
Web -> API: POST /orders
API -> DB: Insert order
DB --> API: order id
API --> Web: 201 Created
@enduml