I have a UML like this:
@startuml
if (ConditionA) then (Yes)
:ActionA;
if (ConditionB) then (Yes)
:ActionB;
if (ConditionC) then (Yes)
:ActionC;
else (No)
endif
else (No)
endif
else (No)
endif
@enduml
And it produces an output like this:

Instead of what I am getting, would it be possible to make all the IF statements converge into a single diamond?
This is similar to these questions:
https://forum.plantuml.net/10359/nested-statements-that-end-same-place-have-extra-connectors
https://forum.plantuml.net/4015/its-possible-to-draw-if-else-endif-without-merge-symbol
However I could not an answer in those.