mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
The converted content is incorrect #547
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 @colindcli on GitHub (Jul 4, 2022).
using System;
public class Program
{
public static void Main()
{
var result = Markdig.Markdown.ToHtml("**This is:**a text with someemphasis");
Console.WriteLine(result); // prints:
This is a text with some emphasis
}
}
@xoofx commented on GitHub (Jul 4, 2022):
I haven't checked the character
:before**123, but it is likely considered as a space or unicode punctuation character and so, as stated by the spec, the right**is not going to be detected as a right flanking delimiter run.Almost all CommonMark implementations are reporting the same (only one is showing strong, but I believe it is invalid)
@colindcli commented on GitHub (Jul 4, 2022):
.
@tats-u commented on GitHub (Nov 13, 2025):
For Chinese text (doesn't work for your example here):