Hello!
I use object qualified associations as a workaround to put text inside of ports, by adding a port, making it invisible, and using the association to occur at the location of the port (with allowmixing so that associations work for things other than objects, like rectangles)
@startuml
!pragma svginteractive true
allowmixing
left to right direction
<style>
.invisible {
LineColor #transparent
BackgroundColor #transparent
}
</style>
rectangle A {
portout " " as p1 <<invisible>>
}
rectangle B {
portin " " as p2 <<invisible>>
}
p1 [a] -- [b] p2
@enduml
https://ibb.co/bWK1HCK
I was wondering if it would be doable to make links work inside of these associations? As far as I know they currently do not
p1 [[[https://www.example.com a]]] -- [b] p2
Thank you!