This commit is contained in:
Timothy Jaeryang Baek 2024-11-21 22:15:04 -08:00
parent 7b9b0f23fe
commit b23600b49d

View File

@ -117,7 +117,13 @@
}; };
onMount(() => { onMount(() => {
const content = marked.parse(value); let content = '';
try {
content = marked.parse(value);
} catch (error) {
console.error('Error parsing markdown content:', error);
}
editor = new Editor({ editor = new Editor({
element: element, element: element,
extensions: [ extensions: [