fix: add ignoreUnescapedHTML

This commit is contained in:
p-sw 2024-06-02 08:57:29 +09:00
parent 8a39615ca9
commit f957a4b8f2

View File

@ -22,6 +22,7 @@ export const LoadedCode = forwardRef<HTMLPreElement, { from: string }>(
useEffect(() => { useEffect(() => {
if (state && ref.current && !ref.current.dataset.highlighted) { if (state && ref.current && !ref.current.dataset.highlighted) {
hljs.configure({ ignoreUnescapedHTML: true });
hljs.highlightElement(ref.current); hljs.highlightElement(ref.current);
} }
}, [state]); }, [state]);