Hi,
I am importing Zotero references with annotation which works really well!
This is the template:
### {{title}}
{{pdfZoteroLink}}
### Notes
{% for annotation in annotations -%}{%- if annotation.annotatedText -%}{% if 'Red' in annotation.colorCategory %}
##### {{annotation.annotatedText | escape }}{% else %}
<mark class="customZot-{% if annotation.color %}{{annotation.colorCategory}} {% endif %}">{{annotation.annotatedText | escape }}</mark> ([{{annotation.page}}](zotero://open-pdf/library/items/{{annotation.attachment.itemKey}}?page={{annotation.page}}&annotation={{annotation.id}}))
{% endif %}{%- endif %} {% if annotation.imageRelativePath %} ![[{{annotation.imageRelativePath}}]]{% endif %}{% if annotation.comment %}
>{{annotation.comment}}
{% endif %}{% endfor -%}
The problem is that I not only want to include a link to the PDF in Zotero but I want it to include the actual PDF file into the folder of the Note as well.
Like this:
How can I achieve this?