Hi there,
I currently have the problem, that the elseif arrow ends in the middle of nowhere, when the if section leads into a stop. You can find my example code below.
My simplified diagram looks like this:

The code looks like this:
@startuml
skinparam ConditionEndStyle hline
!pragma useVerticalIf on
start
repeat
if (option1) then (yes)
stop
elseif (option2) then (yes)
:do something;
endif
repeat while
@enduml
You can find it also on the online-server: https://www.plantuml.com/plantuml/uml/NSwnYiCm3CRnsNeAtPQCT-FT4ZWwT2vqDxKIYzgIiHHAthvfeHIwVlpvyKtciVjQ2zYLfSKUA_wh97PMEKWw-LO8Ss4X-6ezBZNYQdIcxdo9vJYZ2i0JWKwDeYC4dd7GzX2-H_HCWiD6Da88vjeWK35wDpyVpMzIDAtacMNvssj9FB_mM-P2CEtR_laE
If anyone knows how to avoid this, I would be very glad for a response. Thanks in advance!