PlantUML hyperlink bug in Markdown platform

0 votes
asked Nov 26, 2021 in Bug by hamedo (120 points)

I'm writing my documents with Markdown in GROWI platform.

PlantUML works pretty well except with the hyperlinks.

When i run this code:

@startuml
class Car {
  - Some field [[[http://plantuml.com]]]
  Some method() [[[http://plantuml.com/link]]]
}
@enduml

I get this output.

Is there anyway to fix it?

1 Answer

0 votes
answered Nov 26, 2021 by The-Lu (64,340 points)

Hello H.,

  • What is your output?

FYI, here is the result on the Online PlantUML server:

Regards,
Th.

commented Nov 26, 2021 by Hamed Eskandari
Sorry the output image is missed in my question

https://ibb.co/RYrp8Q6
commented Nov 26, 2021 by plantuml (295,000 points)

It looks like you are using an old version.

You can check it with:

@startuml
version
@enduml
commented Nov 26, 2021 by Hamed Eskandari
This is what i got running version:

https://ibb.co/fS04bb1
commented Nov 26, 2021 by plantuml (295,000 points)
After better looking your first image, I think that the issue is on GROWI side.

It seems that something is changing the hyperlink syntax (bracket) to HTML syntax (<a...). PlantUML code is not doing that.

You should transfert the issue to GROWI.

Keep us informed!
commented Nov 26, 2021 by Hamed Eskandari
Okok sure.

GROWI uses similar syntax for hyperlinks.

[label](url address)

It might be conflicting with yours.

I’ll keep you posted
...