style(markdown): format the escaped emoji branch (#2012)

This commit is contained in:
Hampus
2026-08-25 14:48:30 +02:00
committed by GitHub
parent 82c29398d3
commit 53cac0b614
+3 -1
View File
@@ -116,7 +116,9 @@ fn parse_inline_with_context(
position += 1 + result.advance;
continue;
}
if let Some(emoji) = parser.emoji_context().standard_at(base_offset + position + 1)
if let Some(emoji) = parser
.emoji_context()
.standard_at(base_offset + position + 1)
&& text[position + 1..].starts_with(&emoji.raw)
{
accumulated.extend_from_slice(emoji.raw.as_bytes());