When I have links (e.g. UML associations) between classes, I can connect a single note so several of them like so:
@startuml
Note "foobar" as N1
Foo -- Bar
(Foo, Bar) .. N1
Bar -- Baz
(Bar, Baz) .. N1
@enduml
I'd like to do the same, but for two links that connect the same two classes
@startuml
Foo --- Bar
Foo --- Bar
@enduml
Is this possible, and if so, how?