Add Labels on forks

0 votes
asked Mar 8, 2023 in Wanted features by Francois
it would be nice to be able to label the arrows after a fork. For example:

@startuml

fork (first branch)

:first activity;

fork again (second branch)

:second activity;

end fork

@enduml

1 Answer

0 votes
answered Mar 8, 2023 by plantuml (295,000 points)

You can have the following syntax:

@startuml
fork
->first branch;
:first activity;
fork again
->second branch;
:second activity;
end fork
@enduml

Is this what you are looking for?

commented Mar 8, 2023 by anonymous
Yes, Awesome! Thanks
...