Hello PlantUML team,
Here is a minimal example:
@startuml SkinParam topurl https://forum.plantuml.net url of A is [[/13179]] url of B is [[https://plantuml.com/sequence-diagram{This is B}]] @enduml
→ [See links on PlantUML online server]
What did I misunderstand.Thanks for yours support,
Regards,Th.
Hello C.,
Here are all references or source:
(--------)
You need to be a bit more explicit, it looks like, specify the participants for sequence diagram. Works for class diagram too
Thanks @chris, @Martin: for the tip of empty tooltip ('{}').But it seems to be a bug!Why topurl works only with empty tooltip? Is it normal?
Yes, I would say it's a bug. A trailing space works too: [[/13179 ]], or quotes: [["/13179"]]
I'm not very familiar with Java, but my best guess at the bug is:
Line#107 in URLBuilder.java
return new Url(full, null, null);
should be
return new Url(withTopUrl(full), null, null);