Reduce markdown checkbox space

This commit is contained in:
Philipinho
2025-04-24 23:19:39 +01:00
parent 7993532111
commit 0289c5cb09

View File

@ -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`;
},
});
}