pharo-project / pharo

Pharo is a dynamic reflective pure object-oriented language supporting live programming inspired by Smalltalk.
http://pharo.org
Other
1.21k stars 356 forks source link

UI glitch for class comments (Microdown) when using links with classes as target #17380

Open astares opened 1 week ago

astares commented 1 week ago

Within class comments we can refer to other classes using a Microdown syntax like

`Point`

We can also refer to URL links where the text is displayed instead of the link if given:

[Pharo](http://www.pharo.org)

Both work fine in the comment pane.

image

But if one sets (instead of an URL) a link to a class into the target the class is displayed additionally instead of only the wanted link text:

[Pharo's point representing class](`Point`)

image

The display should only diplay the text (here "Pharo's point representing class")