Skip to content

Instantly share code, notes, and snippets.

@ebbertd
Created June 29, 2026 06:16
Show Gist options
  • Select an option

  • Save ebbertd/643b48e646a89c7535634e806dcf7feb to your computer and use it in GitHub Desktop.

Select an option

Save ebbertd/643b48e646a89c7535634e806dcf7feb to your computer and use it in GitHub Desktop.
Obsidian Zotero Literature Note Template
---
Title: "{{title | escape}}"
Year: {{date | format("YYYY")}}
Authors:
{% for creator in creators %}{% if creator.creatorType == "author" %}- "[[Authors/{{creator.firstName}} {{creator.lastName}}]]"
{% endif %}{% endfor %}
Citekey: "@{{citekey}}"
Imported: {{importDate | format("YYYY-MM-DD")}}
{% if publicationTitle %}Journal: {{publicationTitle}}{% endif %}
{% if DOI %}DOI: {{DOI}}{% endif %}
tags:
status:
---
### Reference
{{bibliography}}
Zotero PDF Link: {{pdfZoteroLink}}
### Notes
{% persist "notes" %}{% if isFirstImport %}
{% endif %}{% endpersist %}
### In-text annotations
{% for annotation in annotations -%}
{%- if annotation.annotatedText -%}
> [!quote]{% if annotation.colorCategory %} {{annotation.colorCategory}}{% endif %}
> {{annotation.annotatedText | safe}}
>
> [Page {{annotation.pageLabel}}](zotero://open-pdf/library/items/{{annotation.attachment.itemKey}}?page={{annotation.pageLabel}}&annotation={{annotation.id}})
{%- endif %}
{% if annotation.comment %}
**Comment:** {{annotation.comment | safe}}
[Page {{annotation.pageLabel}}](zotero://open-pdf/library/items/{{annotation.attachment.itemKey}}?page={{annotation.pageLabel}}&annotation={{annotation.id}})
{% endif %}
{%- if annotation.imageRelativePath -%}
![[{{annotation.imageRelativePath}}]]
{% endif %}
{% endfor -%}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment