mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Bold text not working #380
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 @FionaHolder on GitHub (Jul 10, 2020).
I have a very simple test set up and it doesn't seem to be picking up on emphasis at all. Am I configuring or using this wrong? It seems like a very basic use case.
I'm using the Nuget package in ASP.NET Core:
Markdig.Markdown.ToHtml(markdown);The markdown is
## Big heading\nHello this is some text on my page. **This bit is bold. **\nThe HTML I get back is
<h2>Big heading</h2>\n<p>Hello this is some text on my page. **This bit is bold. **</p>\n@xoofx commented on GitHub (Jul 10, 2020):
It is expected as per CommonMark specs: the space just before the trailing
**must be removed, you can try it here