If creating a note with note add -t <TPL> tags and title still have to be provided every time. In some cases the title or at least the tags could always be the same. There should be a possibility to assign tags to a template.
I.e. if you have a weekly meeting you could use a template file:
Participants:
# {{ nm.title }}
## Topics
* Note Topics here
## Todos
*
Along with the template file a related yaml file could be used:
tags:
- weekly
- meeting
title: Weekly @ {{ nm.created.date }}
The template file could be read and the parameters from it be used during note creation. So instead of currently typing note add -t weekly +weekly +meeting Weekly @ 2023-01-11 a user can just type note add -t weekly and achieve the same.
If creating a note with
note add -t <TPL>tags and title still have to be provided every time. In some cases the title or at least the tags could always be the same. There should be a possibility to assign tags to a template.I.e. if you have a weekly meeting you could use a template file:
Along with the template file a related yaml file could be used:
The template file could be read and the parameters from it be used during note creation. So instead of currently typing
note add -t weekly +weekly +meeting Weekly @ 2023-01-11a user can just typenote add -t weeklyand achieve the same.