Given the following PlantUML code:
@startuml
start
repeat
:Task 1;
if (Condition 1) then (Yes)
:Task 2;
else (No)
:Continue Loop;
endif
if (Condition 2) then (Yes)
:Task 3;
else (No)
:Continue Loop;
endif
repeat while (More Data?) is (Yes) not (No)
end
@enduml
What I want is to have a loop continue where there is currently a task called Continue Loop. I can't see how this is possible.
Can someone please tell me what the syntax is for doing this?