PlantUML Activity Diagram connect condition to other path

159 Views Asked by At

I have the following activity diagram in PlantUML (not finished till the END):

@startuml
start
:A;
:B;
:C;

if (D == TRUE?) then (YES)
 : E;
 : F;
 if (G?) then (no)
  stop
 else (Yes)
 :H;
 endif

else (NO)
 :I;
 :J;

 if(K?) then (Yes)
@enduml

This is the result

I want to achieve if K? is YES than connect it to E:

enter image description here

Has anyone an idea how to do that?

0

There are 0 best solutions below