From b22e7864493cb12ed86272fa0c969783506d076f Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Fri, 27 Feb 2026 18:35:53 +0200 Subject: [PATCH] Fix the shrug emoji not rendering correctly --- DiscordChatExporter.Core/Markdown/Parsing/MarkdownParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscordChatExporter.Core/Markdown/Parsing/MarkdownParser.cs b/DiscordChatExporter.Core/Markdown/Parsing/MarkdownParser.cs index c25c6395..4bb53ed6 100644 --- a/DiscordChatExporter.Core/Markdown/Parsing/MarkdownParser.cs +++ b/DiscordChatExporter.Core/Markdown/Parsing/MarkdownParser.cs @@ -275,7 +275,7 @@ internal static partial class MarkdownParser // Capture the shrug kaomoji. // This escapes it from matching for formatting. @"¯\_(ツ)_/¯", - (s, _) => new TextNode(s.ToString()) + (_, s) => new TextNode(s.ToString()) ); private static readonly IMatcher IgnoredEmojiTextNodeMatcher =