What I’m trying to do
I am trying to build a template for meeting notes with the following requirements
- Create note from template and provide the person’s name as title.
- Then I want to fill the note by referring to the file title(which will be person’s name in this case) in different sections of the template.
- Finally I want to move the note to a specific folder by appending the today’s date to the title.
Things I have tried
This is the sample templator code I came up with but it does not seem to work
# [[<% tp.file.title %>]]
## Discussed Items:
- <% tp.file.cursor() %>
## Action Items
- ### For me
-
- ## For [[<% tp.file.title.split("--")[0] %>]]
- <>
<% await tp.file.move("/People Notes/" + tp.file.title + "--" + tp.date.now()) %>
I am pretty new to obsidian and not sure if this is even possible but just wanted to check if there are alternative approaches that I can take for this.