updated daily notes section to be in line with core plugin

This commit is contained in:
2025-12-17 20:48:49 +01:00
parent a265c31460
commit bbc03acd03
4 changed files with 45 additions and 42 deletions

View File

@@ -20,13 +20,11 @@ export interface TaskWeaverSettings {
tasks: Task[];
enableDailyNoteLogging: boolean;
dailyNoteFormat: string;
dailyNotePath: string;
}
export const DEFAULT_SETTINGS: TaskWeaverSettings = {
categories: [],
tasks: [],
enableDailyNoteLogging: false,
dailyNoteFormat: "- [x] {{title}} ({{duration}}) {{emoji}}",
dailyNotePath: ""
dailyNoteFormat: "- [x] {{title}} ({{duration}}) {{emoji}}"
};