Plantuml generating invalid link example: [[https://www.plantuml.com]] when written beside alt/else blocks

0 votes
asked May 20, 2021 in Question / help by anonymous

Hi,

When a link placed beside alt. else boxes or opt etc.. then invalid link is generated by plantuml i.e link starting with "[". Please check below example. May be this is a bug. Please help and let me know if this really isa BUG or have i missed anything.

@startuml
Bob -> Alice : hello
alt [[https://www.plantuml.com]]
 note over Bob: [[https://www.google.com]]
else [[https://www.plantuml.com]]
 note over Bob: [[https://www.google.com]]
end
@enduml

1 Answer

0 votes
answered May 20, 2021 by plantuml (295,000 points)

Thanks for the report.

It's really a bug. Right now, you can use the following workaround.

It will be fixed in next release.

commented May 21, 2021 by anonymous
Thanks for the quick reply.
...