Gleb Minaev
06/13/2022, 4:28 PMPoint
and Collector
respectively. But no matter what space you put between them until there is no paragraph break between them it will be parsed as a word "Point" with link to Collector
.
I found a workaround by placing any element that is parsed as a space (for example, <wbr>
,  
, etc.). But the workaround works in IntelliJ IDEA but not in HTML version. More precisely, in HTML version the links are separated and parsed correctly, but there is no space between them (no matter what space element you put between them).
It is a bug, isn't it? Is there any official solution (or at least workaround) for this?Gleb Minaev
06/13/2022, 4:48 PM[Point][Point] [Collector][Collector]
and [Point][Point] [Collector]
have the same issue: is parsed correctly, but has space only in IDEA.
2. [Point] [Collector][Collector]
is parsed as two links to Collectors
with no space between in both IDEA and HTML version. And in IDEA it works a bit… glitchy. (But I understand that it's a question to IntelliJ IDEA team. For now I need a solution for HTML version.)Ignat Beresnev
06/13/2022, 7:10 PM/**
* _hello_ *there*
*/
fun test() {}
will result in
_hello_*there*That's also related to the markdown parser and is not as easy to fix 😞 but we'll get to this one for sure
Ignat Beresnev
06/13/2022, 7:20 PM[Point] [Collector][Collector]
), where Point
leads to Collector
is something I'm not aware of and I'm not sure what it might be related to 😞 Feel free to create an issue about this, it needs to be looked at and fixed
IDEA seems to be liking to correct declarations in this casemsink
06/13/2022, 11:59 PM