fix: let Templater own date-system templates

Leave the default Journal and Meeting systems without a raw Waypoint template so Templater folder triggers own interactive rendering. Their fallback frontmatter now matches the journal and meeting types. Document the required folder-trigger setup and selected-date filename contract.
This commit is contained in:
2026-09-07 21:33:03 -04:00
parent 26a1a481ac
commit e027ac4a9e
5 changed files with 29 additions and 10 deletions
+4 -4
View File
@@ -115,8 +115,8 @@ export const DEFAULT_SETTINGS: WaypointSettings = {
name: 'Journal',
folder: 'periodic/journal',
nameFormat: 'YYYY-MM-DD - [Journal]',
templateFile: 'resources/template/journal',
typeProperty: 'journal-note',
templateFile: '',
typeProperty: 'journal',
icon: 'book-open',
},
{
@@ -124,8 +124,8 @@ export const DEFAULT_SETTINGS: WaypointSettings = {
name: 'Meeting',
folder: 'periodic/meetings',
nameFormat: 'YYYY-MM-DD - {title}',
templateFile: 'resources/template/meeting',
typeProperty: 'meeting-note',
templateFile: '',
typeProperty: 'meeting',
icon: 'users',
},
],