mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-09 21:42:15 +00:00
Markdown renderer caused the string in { xxx } lost #257
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Anduin2017 on GitHub (Dec 28, 2018).
Markdown renderer caused the string in { xxx } lost.
When I try to convert the following markdown to HTML:
Markdig will give me the following result:
But it seems other markdown converter will produce the following result:
So how to make markdig to remain the content in the braces?
@Kryptos-FR commented on GitHub (Dec 28, 2018):
Which extensions are enabled? Seems like an edge case caused by a particular extension.
According to https://babelmark.github.io/?text=%7B+HTTP_HOST+%7D, Markdig+extension is the only one to display such behaviour.
@Anduin2017 commented on GitHub (Dec 28, 2018):
My source code is
It seems that I am using
UseAdvancedExtensionsextensions.@xoofx commented on GitHub (Dec 28, 2018):
That's the attribute extension causing this, you should not use it if you are using things like
{ xxx }@ltm0203 commented on GitHub (Dec 28, 2018):
Changed the code snippet
@Anduin2017
@xoofx
Thank you very much for solving this problem