From 3467515ae9c5d0b3c70abec65cea24f1bc2d389f Mon Sep 17 00:00:00 2001 From: CatsJuice Date: Tue, 1 Apr 2025 02:37:27 +0000 Subject: [PATCH] fix(core): should show divider between readwise content and note (#11113) --- .../frontend/core/src/modules/integration/entities/writer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/core/src/modules/integration/entities/writer.ts b/packages/frontend/core/src/modules/integration/entities/writer.ts index 2474c8646..52b6a87b5 100644 --- a/packages/frontend/core/src/modules/integration/entities/writer.ts +++ b/packages/frontend/core/src/modules/integration/entities/writer.ts @@ -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) {