Links stopped working

0 votes
asked Mar 15, 2017 in Bug by gusty (120 points)

Hi,

 

It seems llinks in the diagrams stopped working recently.

Here's a repro:

@startuml
 
abstract class Semigroup {
 + append x y [[http://gusty.github.io/FSharpPlus/abstraction-semigroup.html#mappend {Appends two semigroups} ]]
}
 
@enduml

This was working 3 days ago, now the whole links are being displayed.

 

Thanks

1 Answer

0 votes
answered Mar 15, 2017 by plantuml (295,000 points)
selected Mar 15, 2017 by gusty
 
Best answer

Yes, there have been a slight syntax change about links. We are sorry about that, usually, we try to avoid this kind of change, but syntax on links really needed to be cleaned. See http://plantuml.com/link

The right way to do it is now :

@startuml
abstract class Semigroup [[http://gusty.github.io/FSharpPlus/abstraction-semigroup.html]] {
 + append x y [[[http://gusty.github.io/FSharpPlus/abstraction-semigroup.html#mappend {Appends two semigroups} ]]]
}
@enduml

http://www.plantuml.com/plantuml/uml/fO-n2iCW54Ltl-91nrBTEwLBvqB6uF2I1XKqYkz96aB-lLAI_42dEznx3jo663ENu0Nsn1a7Xi4Z4RHZS2R7ag3hB7EwAsKAyIADOrjwwQ9wjXPpUlb2we1Td6vqaD9oy5h3Ak0AcD8ulU43InN-PRo4tRK-Vad0SuHpGnjehSKccjhLOry0

...