Create notes from reusable templates with dynamic placeholder replacement.
Templates allow you to quickly create notes with predefined structures and content. Perfect for recurring note types like meeting notes, daily journals, project plans, and more.
Templates are stored in the data/_templates/ folder as markdown files. You will need to create such folder if it doesn't exist:
data/
βββ _templates/
βββ meeting-notes.md
βββ daily-journal.md
βββ project-plan.md
Click the "New" button (or + on any folder) and select "New from Template":
- Choose a template from the dropdown
- Enter a name for your new note
- Click "Create Note"
The template will be copied with all placeholders replaced automatically!
Templates support dynamic placeholders that are replaced when you create a note:
| Placeholder | Description | Example |
|---|---|---|
{{date}} |
Current date | 2025-11-26 |
{{time}} |
Current time | 14:30:45 |
{{datetime}} |
Current date and time | 2025-11-26 14:30:45 |
{{timestamp}} |
Unix timestamp | 1732632645 |
{{year}} |
Current year | 2025 |
{{month}} |
Current month | 11 |
{{day}} |
Current day | 26 |
{{title}} |
Note name (without .md) | Weekly Meeting |
{{folder}} |
Parent folder name | Projects |
---
tags: [meeting]
date: {{date}}
---
# Meeting Notes - {{title}}
**Date:** {{datetime}}
**Participants:**
-
## Agenda
-
## Discussion
## Action Items
- [ ]
## Next Steps
When you create a note called "Team Sync" from this template, it becomes:
---
tags: [meeting]
date: 2025-11-26
---
# Meeting Notes - Team Sync
**Date:** 2025-11-26 14:30:45
**Participants:**
-
## Agenda
-
## Discussion
## Action Items
- [ ]
## Next Steps
We provide three example templates in documentation/templates/ that you can copy to your data/_templates/ folder:
- meeting-notes.md - Structured meeting notes with agenda, discussion, and action items
- daily-journal.md - Daily journal with morning goals and evening reflection
- project-plan.md - Project planning template with objectives, timeline, and status tracking
Option 1: Copy Manually
cp documentation/templates/*.md data/_templates/Option 2: Create Your Own
- Create a
.mdfile indata/_templates/ - Add content and placeholders
- Save and it's ready to use!
- β Templates can include YAML frontmatter for tags and metadata
- β Use descriptive template names (they appear in the dropdown)
- β Templates work in any folder - the context is preserved
- β You can edit templates anytime - changes apply to new notes only
- β Combine templates with tags for powerful organization
See also:
- Tags Documentation - Learn about organizing with tags
- Features Overview - All application features