Monday 23 January 2023

PlantUML: Define multi line title using title, end title keywords

We can define the diagram title in multi lines using title, end title keywords.

 

multiLineTitle.txt

@startuml

title
Simple flow to demonstrate a
client and server communication
end title

participant client
participant server

client -> server : Send request
server -> client : Send response
client -> server: close connection

@enduml

 

Above snippet generate below diagram.

 


 

Previous                                                    Next                                                    Home

No comments:

Post a Comment