mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-23 07:30:57 -05:00
fix: add try-catch block around md renderer
fix: update recursive match to block numbered lists
This commit is contained in:
parent
cb6296a96e
commit
478d375125
1 changed files with 9 additions and 4 deletions
|
@ -185,7 +185,8 @@ const Container = styled.div<{ largeEmoji: boolean }>`
|
||||||
/**
|
/**
|
||||||
* Regex for matching execessive recursion of blockquotes and lists
|
* Regex for matching execessive recursion of blockquotes and lists
|
||||||
*/
|
*/
|
||||||
const RE_RECURSIVE = /(^(?:[>*+-][^\S\r\n]*){5})(?:[>*+-][^\S\r\n]*)+(.*$)/gm;
|
const RE_RECURSIVE =
|
||||||
|
/(^(?:(?:[>*+-]|\d+\.)[^\S\r\n]*){5})(?:(?:[>*+-]|\d+\.)[^\S\r\n]*)+(.*$)/gm;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Regex for matching multi-line blockquotes
|
* Regex for matching multi-line blockquotes
|
||||||
|
@ -247,9 +248,13 @@ export default memo(({ content, disallowBigEmoji }: MarkdownProps) => {
|
||||||
const [Content, setContent] = useState<React.ReactElement>(null!);
|
const [Content, setContent] = useState<React.ReactElement>(null!);
|
||||||
|
|
||||||
useLayoutEffect(() => {
|
useLayoutEffect(() => {
|
||||||
|
try {
|
||||||
render
|
render
|
||||||
.process(sanitisedContent)
|
.process(sanitisedContent)
|
||||||
.then((file) => setContent(file.result));
|
.then((file) => setContent(file.result));
|
||||||
|
} catch (err) {
|
||||||
|
setContent("Message failed to render." as never);
|
||||||
|
}
|
||||||
}, [sanitisedContent]);
|
}, [sanitisedContent]);
|
||||||
|
|
||||||
const largeEmoji = useMemo(
|
const largeEmoji = useMemo(
|
||||||
|
|
Loading…
Reference in a new issue