Hello PlantUML!
I have a diagram that looks like this:
https://gifyu.com/image/XN6M
And the source code is the following:
@startuml
skinparam rectangleBorderThickness 1
|#orange|Registrar|
#lightgray:**Introduce document to the system**;
:Register Document;
if (Work on the document is required?) then (No)
#lightgray:**Archive document**;
end
else (Yes)
repeat
:Work on incoming documents;
|#green|Performer|
:**Perform tasks for the document**;
repeat while (Completed?) is (No) not (Yes)
|#orange|Registrar|
#lightgray:**Archive document**;
end
@enduml
As you can see, there are two activity blocks that look exactly the same:
|#orange|Registrar|
#lightgray:**Archive document**;
end
I would like to join them into one but I see no way of doing it. Can someone help me with this?