Hi,
I’m trying to write multiple frontmatter keys to a file at the same time using the Obsidian Advanced URI Plugin, but I can’t see anywhere in the documentation how to write multiple keys at the same. The relevant examples in the documentation only show nested keys.
My desired result is to have the following file properties:
id: 135762
copyright_year: 2024
So far I have tried the following actions:
obsidian://adv-uri?vault=Notes&filepath=my-file&frontmatterkey=id&data=135762frontmatterkey=copyright_year&data=2024
obsidian://adv-uri?vault=Notes&filepath=my-file&frontmatterkey=id,copyright_year&data=135762,2024
neither of which does what I’m looking for.
Any advice would be very welcome. Thanks in advance.