From 0289c5cb09af53927bacbaf15931543eed682f84 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Thu, 24 Apr 2025 23:19:39 +0100 Subject: [PATCH] Reduce markdown checkbox space --- apps/server/src/integrations/export/turndown-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/integrations/export/turndown-utils.ts b/apps/server/src/integrations/export/turndown-utils.ts index ce55c659..44e606f3 100644 --- a/apps/server/src/integrations/export/turndown-utils.ts +++ b/apps/server/src/integrations/export/turndown-utils.ts @@ -68,7 +68,7 @@ function taskList(turndownService: TurndownService) { ) as HTMLInputElement; const isChecked = checkbox.checked; - return `- ${isChecked ? '[x]' : '[ ]'} ${content.trim()} \n`; + return `- ${isChecked ? '[x]' : '[ ]'} ${content.trim()} \n`; }, }); }