Ethan Gunderson

TIL: Using Templater to Automatically Move Notes In Obsidian

The following Templater command will automatically move a note to the specified folder when the template is rendered.

<% await tp.file.move("/Meetings/" + tp.date.now("YYYY") + "/" + tp.date.now("MM") + "/" + tp.date.now("DD") + "/" + tp.file.title) %>

With this in place, I can create a note, insert my meeting template, and the note will move to the correct spot without having to fuss over the folder structure.

#obsidian #til