Last active
October 18, 2024 22:38
-
-
Save dannberg/9056b89437110e62766689772437fe46 to your computer and use it in GitHub Desktop.
Dann Berg's Meeting template for Obsidian. Full implementation instructions here: https://dannb.org/blog/2023/obsidian-meeting-note-template/. See the YouTube tutorial here: https://youtu.be/Ud16HOQoS5Q
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
date: <% tp.file.creation_date() %> | |
type: meeting | |
company: | |
summary: " " | |
--- | |
tags: [[🗣 Meetings MOC]] | |
Date: [[<% tp.date.now("YYYY-MM-DD-dddd") %>]] | |
<% await tp.file.rename(tp.date.now("YYYY-MM-DD") + " " + tp.file.title) %> | |
# [[<% tp.date.now("YYYY-MM-DD") + " " + tp.file.title %>]] | |
**Attendees**: | |
- | |
## Agenda/Questions | |
- | |
## Notes | |
- |
@TrustArgon I've never thought to do this, but I kept meaning to come back to this after seeing the question above about it. I just tested your method and it works perfectly. Thanks
That works wonderfully. Thanks!
It would be great if after entering attendees name the cursor moves to Agenda and after entering agenda it automatically moves under notes heading.
@nippyin Templater has <% tp.file.cursor() %>
that allows you to specify where you want the cursor to be placed once a new note is created from a template. But I don't think there's a way to automatically move the curser after entering attendees name(s). If you find a way to get it to work, please share here!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@tbal-withatouchofmalace
I managed to accomplish what you're looking for by modifying the Meeting Template like so:
You may have to change the contents of
const folder
to match your use case as I have my meetings in a root folder calledMeetings
. If you're using it as originally designed, just change it fromMeetings/${moment}
toTimestamp/Meetings/${moment}
and you should be good to go.