fix(core): should show divider between readwise content and note (#11113)

This commit is contained in:
CatsJuice
2025-04-01 02:37:27 +00:00
parent 1be83dc330
commit 3467515ae9

View File

@@ -51,7 +51,7 @@ export class IntegrationWriter extends Entity {
} = options;
const workspace = this.workspaceService.workspace;
let markdown = comment ? `${content}\n---\n${comment}` : content;
let markdown = comment ? `${content}\n\n---\n\n${comment}` : content;
let finalDocId: string;
if (!docId) {