Fix callout body paragraphs merging on reload (#192)

This commit is contained in:
Yuri Karamian
2026-06-30 14:09:25 +02:00
parent 35a8501f2d
commit acecc9c68d
+1 -1
View File
@@ -163,7 +163,7 @@ export function serializeCallout(node: any, serializeChild: (child: any) => stri
while (parts.length && parts[parts.length - 1] === '') parts.pop();
const out = [`> ${header}`];
const inner = parts.join('\n');
const inner = parts.join('\n\n');
if (inner.length) {
for (const line of inner.split('\n')) out.push(line.length ? `> ${line}` : '>');
}