vault backup: 2025-05-05 10:47:08

This commit is contained in:
Dane Sabo 2025-05-05 10:47:08 -04:00
parent 4d113a445f
commit f4de73c725

View File

@ -57,11 +57,14 @@ Accessed: {{ accessDate | format("YYYY-MM-DD h:mm a")}}
| replace(']', '')
}}{% if not loop.last -%}, {% endif %}{% endfor %}
{%- set in_read = 0 -%}
{% set in_read = 0 -%}
{%- for collection in collections -%}
{%- if collection.name == "! 3. Grok'd" -%}
{%- set in_read = 3 -%}
{}
{%- elif collection.name =="! 2. Second Pass" -%}
{%- set in_read = 2 -%}
{%- elif collection.name =="! 1. First Pass" -%}
{%- set in_read = 1 -%}
{%- endif -%}
{%- endfor -%}
@ -91,40 +94,31 @@ Accessed: {{ accessDate | format("YYYY-MM-DD h:mm a")}}
![[Paper Notes/{{ title }}.md]]
## Highlights From Zotero
{# Process non-Purple highlights -#}
{#- Process non-Purple highlights -#}
{% for a in annotations -%}
{% if (a.type == "highlight" or a.type == "underline") and a.colorCategory != "Purple" -%}
{% elif a.colorCategory == "Blue" %}
{% if a.colorCategory == "Blue" -%}
>[!tip] Brilliant
{% elif a.colorCategory == "Green" %}
{% elif a.colorCategory == "Green" -%}
>[!done] Important
{% elif a.colorCategory == "Yellow" %}
{% elif a.colorCategory == "Yellow" -%}
>[!highlight] Highlight
{% elif a.colorCategory == "Orange" %}
>[!warning] S?
{% elif a.colorCategory == "Red" %}
>[!fail] Dubious
{% else %}
{% elif a.colorCategory == "Orange" -%}
>[!warning] Dubious
{% elif a.colorCategory == "Red" -%}
>[!fail] This ain't right
{% else -%}
>[!quote] Other Highlight
{% endif -%}
> {{ a.annotatedText }}
> {{a.date}}
> {{ a.date | format("YYYY-MM-DD h:mm a")}}
{%- if a.comment -%}
>
{%- if a.comment %}
> *{{ a.comment }}*
>
{%- endif %}
{% endif -%}
{% endif %}
{% endfor %}
## Follow-Ups
{# Create a separate loop for Purple highlights as tasks #}
{% for a in annotations -%}