Skip to content

Commit

Permalink
Move comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Skalakid committed Jan 16, 2025
1 parent 2fe0e40 commit 710c51a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parseExpensiMark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,9 @@ function parseExpensiMark(markdown: string): MarkdownRange[] {
}
const sortedRanges = sortRanges(ranges);
let markdownRanges = sortedRanges;
// Blocks applying italic and strikethrough styles to emojis on Android
// TODO: Remove this condition when splitting emojis inside the inline code block will be fixed on the web
if (Platform.OS === 'android') {
// Blocks applying italic and strikethrough styles to emojis on Android
// TODO: Remove this condition when splitting emojis inside the inline code block will be fixed on the web
markdownRanges = splitRangesOnEmojis(markdownRanges, 'italic');
markdownRanges = splitRangesOnEmojis(markdownRanges, 'strikethrough');
}
Expand Down

0 comments on commit 710c51a

Please sign in to comment.