Hi,
Why does the following code:
@startuml
rectangle "A" as A {
rectangle "B" as B
rectangle "C" as C
}
rectangle "D" as D {
rectangle "E" as E
}
B <-r-> C: Text 1
C <-r-> E: Text 2
@enduml
produces a diagram where "Text 1" is positioned above the link, but "Text 2" is positioned below the link?
How do I make both link texts appear above their respective link lines?