What I’m trying to do
Hello all! I am trying to set up a creation date, and a “last modified” date in my Zotero literature note frontmatter. I need the creation date to be static from the first import, and the modified date to change with each new import.
Things I have tried
I know the following YAML code will get me a dynamic date that changes with each import for the modified date, but the static “created” date does not seem to work.
---
created: {% if isFirstImport %}{{date | format ("YYYY-MM-DD hh:mm:ss A")}}{% endif %}
last modified: {{date | format ("YYYY-MM-DD hh:mm:ss A")}}
---