The markdown parser in Kagi's feedback software has a hard time with Github-style linked issues like #1234.
You can see how these are supposed to work in a paragraph:
Input:
#1234
Output:
#1234
However, they actively break things if you try to use the #XXXX inside a link, and they fail to work in a number of scenarios:
Links:
Input:
[#1234: Referrer links in search results](https://kagifeedback.org/d/1234-referrer-links-in-search-results)
Output:
#1234: Referrer links in search results](https://kagifeedback.org/d/1234-referrer-links-in-search-results)
Rich text formatting:
Input:
**#1234**
_#1234_
~~#1234~~
Output:
#1234
#1234
#1234
Lists:
Input:
- #1234
Output:
Quotes:
Input:
> #1234
Output:
Headings:
Input:
#### #1234
Output:
#1234
They should definitely not break inside of links, and would ideally work inside of lists and quotes. The other scenarios are less important, but it's confusing that they don't function as expected.