mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-04-26 16:02:33 +00:00
Fix the shrug emoji not rendering correctly
This commit is contained in:
@@ -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 =
|
||||||
|
|||||||
Reference in New Issue
Block a user