Can links be supported in components arrow annotations without extra symbol?

0 votes
asked Aug 22, 2017 in Bug by boshka (3,940 points)
component a as a

component b as b

a --> b: [[http://www.google.com data]]

/'

doesn't work

'/

a --> b: :[[http://www.google.com data]]

/'

works

'/

1 Answer

0 votes
answered Aug 23, 2017 by Serge Wenger Work (15,620 points)

Hello,

I think it is a bug, but you can use the following workaround:

@startuml
component a as a
 
component b as b
 
a --> b:  [[http://www.matisa.ch data]]
@enduml
...