What I’m trying to do
I am using a template to import highlights and metadata from Zotero to Obsidian. It has worked really well for the last few months.
With the new update that requires tags to be in a list, the imported Zotero tags come through as a long string (e.g., read, annotated_bibliography, nursing) rather than individual tags. Because this is not a valid tag, it has a red line through it and the tags don’t work.
Things I have tried
I’ve done a few searches to figure out how to address this, but it doesn’t look like anyone has run into this yet (or posted about it if they have). Because I mostly use templates, my coding knowledge is limited to simple data view queries and trying what others have done until something works.
The property looks like this:
tags: {% if allTags %}{{allTags}}{% endif %}
Is there a simple way to modify this so the tags come through in a list format and it works with the new requirements?
Thanks!