Good day.
I'm using PlantUML Confluence Plugin.
I want to insert hyperlink in label on arrow.
Class diagram is worked:
@startuml
A --> b : [data [[http://www.google.com google]]]
@enduml
But activity diagram fails
@startuml
A -->[data [[http://www.google.com google]]] b
@enduml
And result:
@startuml
A -->[data google] b
Syntax Error?
Did you mean:
A -->data google] b
-->[data google] b
I used escape chars (~ and \), but it still same error.
It is possible to add hyberlink here?
Thanks.