mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-03-31 01:23:06 -06:00
Fix the shrug emoji not rendering correctly
This commit is contained in:
parent
951c1e4613
commit
b22e786449
|
|
@ -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<MarkdownContext, MarkdownNode> IgnoredEmojiTextNodeMatcher =
|
||||
|
|
|
|||
Loading…
Reference in a new issue