Advertisement
Guest User

New Note Template for Templater

a guest
Oct 27th, 2024
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | Software | 0 0
  1. // This is a new note template for the Templater community plugin. It will prepend frontmatter with 'created' & 'modified' dates set to moment of creation, and will move cursor to note body. Erase this line.
  2.  
  3. ---
  4. created: <% moment(tp.file.creation_date()).format("YYYY.MM.DD HH:mm") %>
  5. modified: <% moment().format("YYYY.MM.DD HH:mm") %>
  6. tags: []
  7. ---
  8.  
  9.  
  10. <%*
  11. tp.hooks.on_all_templates_executed(async () => {
  12. app.workspace.activeLeaf.view.editor.focus();
  13. });
  14. -%>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement