vault backup: 2025-05-05 10:34:40

This commit is contained in:
Dane Sabo 2025-05-05 10:34:40 -04:00
parent 006fbf796c
commit 4d113a445f

View File

@ -93,29 +93,38 @@ Accessed: {{ accessDate | format("YYYY-MM-DD h:mm a")}}
## Highlights From Zotero
{# Process non-Purple highlights -#}
{% for a in annotations -%}
{% if (a.type == "highlight" or a.type == "underline") and a.colorCategory != "Purple" -%}
{% elif a.colorCategory == "Blue" %}
>[!tip] Brilliant
{% elif a.colorCategory == "Green" %}
>[!done] Important
{% elif a.colorCategory == "Yellow" %}
>[!highlight] Highlight
{% elif a.colorCategory == "Orange" %}
>[!warning] S?
{% elif a.colorCategory == "Red" %}
>[!fail] Dubious
{% else %}
>[!quote] Other Highlight
{% endif -%}
> {{ a.annotatedText }}
{% if a.comment -%}
> {{a.date}}
{%- if a.comment -%}
>
> *{{ a.comment }}*
>
{% endif -%}
> {{a.date}}
{#% endif -%#}
{%- endfor %}
{%- endif %}
{% endfor %}
## Follow-Ups
{# Create a separate loop for Purple highlights as tasks #}
{% for a in annotations -%}