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 ## Highlights From Zotero
{# Process non-Purple highlights -#} {# Process non-Purple highlights -#}
{% for a in annotations -%} {% for a in annotations -%}
{% if (a.type == "highlight" or a.type == "underline") and a.colorCategory != "Purple" -%} {% if (a.type == "highlight" or a.type == "underline") and a.colorCategory != "Purple" -%}
{% elif a.colorCategory == "Blue" %} {% elif a.colorCategory == "Blue" %}
>[!tip] Brilliant >[!tip] Brilliant
{% elif a.colorCategory == "Green" %} {% elif a.colorCategory == "Green" %}
>[!done] Important >[!done] Important
{% elif a.colorCategory == "Yellow" %} {% elif a.colorCategory == "Yellow" %}
>[!highlight] Highlight >[!highlight] Highlight
{% elif a.colorCategory == "Orange" %} {% elif a.colorCategory == "Orange" %}
>[!warning] S? >[!warning] S?
{% elif a.colorCategory == "Red" %} {% elif a.colorCategory == "Red" %}
>[!fail] Dubious >[!fail] Dubious
{% else %} {% else %}
>[!quote] Other Highlight >[!quote] Other Highlight
{% endif -%} {% endif -%}
> {{ a.annotatedText }} > {{ a.annotatedText }}
{% if a.comment -%} > {{a.date}}
{%- if a.comment -%}
> >
> *{{ a.comment }}* > *{{ a.comment }}*
> >
{% endif -%} {%- endif %}
> {{a.date}}
{#% endif -%#} {% endfor %}
{%- endfor %}
## Follow-Ups ## Follow-Ups
{# Create a separate loop for Purple highlights as tasks #} {# Create a separate loop for Purple highlights as tasks #}
{% for a in annotations -%} {% for a in annotations -%}