If I want to type a number preceded by a pound symbol / hashtag, that number is automatically converted into a link to a forum post. For my examples here I will have the straight text I type first, then a codeblock displaying exactly what I typed. Ex: #2025 #2025
That's normal behavior for Markdown, and normally should be able to be escaped by a backslash, like so: #2025 \#2025
As can be seen above however, backslash escaping simply does not work, the text is still linkified. Putting a second backslash doesn't work right either, it does escape the link but also escapes the first backslash: \#2025 \\#2025
Expected behavior is for one backslash in front of a hashtag followed by a number to prevent it from being linkified.