Fix the shrug emoji not rendering correctly

This commit is contained in:
Tyrrrz 2026-02-27 18:35:53 +02:00
parent 951c1e4613
commit b22e786449

View file

@ -275,7 +275,7 @@ internal static partial class MarkdownParser
// Capture the shrug kaomoji. // Capture the shrug kaomoji.
// This escapes it from matching for formatting. // This escapes it from matching for formatting.
@"¯\_(ツ)_/¯", @"¯\_(ツ)_/¯",
(s, _) => new TextNode(s.ToString()) (_, s) => new TextNode(s.ToString())
); );
private static readonly IMatcher<MarkdownContext, MarkdownNode> IgnoredEmojiTextNodeMatcher = private static readonly IMatcher<MarkdownContext, MarkdownNode> IgnoredEmojiTextNodeMatcher =