This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Markdown escape character is not working properly for the code block #3977
Unanswered
Vijay-Nirmal
asked this question in
Questions & Help
Replies: 3 comments
|
Not sure if this is a bug, rather a feature request. The parser supports escape characters but you need to escape each character. ex: cc\ @WilliamABradley |
0 replies
|
@nmetulev Normally, the below method is the way to escape the code block but this is not working in MarkdownParser. So this is a bug. |
0 replies
|
I believe that is how GitHub does it, but not all markdown renderers are the same. I agree it would be great to support this as well, but not parsing exactly like GitHub does not automatically categorize this as a bug. For example, looking through the commonmark spec I don't see this as listed. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I'm submitting a...
Current behavior
Markdown escape character (
\) is not working properly for the code blockExpected behavior
Markdown escape character (
\) should be working properly for the code block```XAML
<Grid>
```
Minimal reproduction of the problem with instructions
Try
All reactions