Markdown renderer caused the string in { xxx } lost #253

Open
opened 2026-01-29 14:31:50 +00:00 by claunia · 0 comments
Owner

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:

{ HTTP_HOST }

Markdig will give me the following result:

<p http_host>
</p>

But it seems other markdown converter will produce the following result:

<p>
  { HTTP_HOST }
</p>

So how to make markdig to remain the content in the braces?

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: ```markdown { HTTP_HOST } ``` Markdig will give me the following result: ```html <p http_host> </p> ``` But it seems other markdown converter will produce the following result: ```html <p> { HTTP_HOST } </p> ``` So how to make markdig to remain the content in the braces?
claunia added the invalid label 2026-01-29 14:31:50 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/markdig#253