Skip to content

Instantly share code, notes, and snippets.

@dannberg
Last active April 1, 2025 23:08
Show Gist options
  • Save dannberg/7617aa7f4198938352431b7a9f77f8d1 to your computer and use it in GitHub Desktop.
Save dannberg/7617aa7f4198938352431b7a9f77f8d1 to your computer and use it in GitHub Desktop.
Dann Berg's Meeting MOC document for Obsidian. Full instructions for implementation here: https://dannb.org/blog/2023/obsidian-meeting-note-template/. See the YouTube tutorial here: https://youtu.be/Ud16HOQoS5Q
[[+Home]] %% tags:: #MOC %%
# Meetings MOC
Meetings are timestamped events with other people, where information is exchanged and collected. Meeting notes are intrinsically ephemeral. They're stored in a separate Space than other Umami notes (`Timestamps/Meetings`) and rarely reviewed. If there's information in a meeting that needs to be accessed later, it should be moved into a more evergreen note in the Umami folder.
**Template:** [[Template, Meeting]]
```meta-bind-button
label: New Meeting
hidden: false
class: ""
tooltip: ""
id: ""
style: default
actions:
- type: templaterCreateNote
templateFile: Extras/Templates/Template, Meeting.md
folderPath: Timestamps/Meetings
fileName: TKTK
openNote: true
```
## Meeting Notes
```dataview
TABLE file.cday as Created, summary
FROM "Timestamps/Meetings" and -#MOC
SORT file.cday DESC
```
@dannberg
Copy link
Author

@moshin34 ChatGPT is surprisingly good at making edits to Dataview tables. Give it the dataview table code from the template, along with your new requirements, and it should pop something out for you to try. If it doesn't work, keep playing with ChatGPT until it does. You can event copy/paste the dataview docs page for sources (https://blacksmithgu.github.io/obsidian-dataview/reference/sources/) and play around until you get it right.

Basically, you'll just need to edit the FROM part of the code based on either the directory structure you use, or if you want to use tags/links instead. My directory structure is different, so I'm not able to test myself, but ChatGPT is a friend when I'm trying to modify tables I find online to suit my purposes.

@moshin34
Copy link

moshin34 commented Jan 13, 2025 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment