Hi guys,
I’m using Obsidian as a simple notetaking app, categories and notes, as I’m not fond of any particular methods.
I actually see some value in the dynamic queries offered by Dataview, so I’m trying to integrate it into my workflow.
More specifically, I like taking pictures and add some comments to them, but I like to keep every subject confined in a single note.
For example I have a note listing all the onigiri I tried, with a simple comment, organized in a statically created table.
What I would like to achieve is a ways to automatically list all pictures in a folder and manually add some comments. Is there any way to do this without manually embedding all pictures?
So far, I only came up with the idea of adding this frontmatter object and parse it with Dataview:
list:
- path: "__assets/Onigiri list/IMG-20240322012235862.png"
type: Vegetables
note: "No taste at all"
- path: "__assets/Onigiri list/IMG-20240322012235894.png"
type: Vegetables
note: "Pickles are particularly strong"
- path: "__assets/Onigiri list/IMG-20240322012235926.png"
type: Meat
note: "The beef is spicy"
Anyway I can’t find a way to parse this into a table with image embeds…
Do you have suggestions about the query or even about what could be a better workflow?
Thank you very much!