forked from abner/for-legacy-web
fix: match optional whitespace in quote regex
parent
084c90613f
commit
9807ef9c9a
|
|
@ -182,7 +182,7 @@ const Container = styled.div<{ largeEmoji: boolean }>`
|
||||||
/**
|
/**
|
||||||
* Regex for matching execessive blockquotes
|
* Regex for matching execessive blockquotes
|
||||||
*/
|
*/
|
||||||
const RE_QUOTE = /(^(?:>\s){5})[>\s]+(.*$)/gm;
|
const RE_QUOTE = /(^(?:>\s?){5})[>\s?]+(.*$)/gm;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sanitise Markdown input before rendering
|
* Sanitise Markdown input before rendering
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue