fix: match optional whitespace in quote regex

pull/1049/head
Paul Makles 2022-07-18 12:59:17 +01:00
parent af7cd15681
commit 57ec1d4fbd
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ const Container = styled.div<{ largeEmoji: boolean }>`
/**
* Regex for matching execessive blockquotes
*/
const RE_QUOTE = /(^(?:>\s){5})[>\s]+(.*$)/gm;
const RE_QUOTE = /(^(?:>\s?){5})[>\s?]+(.*$)/gm;
/**
* Sanitise Markdown input before rendering