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(']', '') | replace(']', '')
}}{% if not loop.last -%}, {% endif %}{% endfor %} }}{% if not loop.last -%}, {% endif %}{% endfor %}
{%- set in_read = 0 -%} {% set in_read = 0 -%}
{%- for collection in collections -%} {%- for collection in collections -%}
{%- if collection.name == "! 3. Grok'd" -%} {%- if collection.name == "! 3. Grok'd" -%}
{%- set in_read = 3 -%} {%- 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 -%} {%- endif -%}
{%- endfor -%} {%- endfor -%}
@ -91,40 +94,31 @@ Accessed: {{ accessDate | format("YYYY-MM-DD h:mm a")}}
![[Paper Notes/{{ title }}.md]] ![[Paper Notes/{{ title }}.md]]
## 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" -%}
{% if 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] Dubious
>[!warning] S? {% elif a.colorCategory == "Red" -%}
>[!fail] This ain't right
{% elif a.colorCategory == "Red" %} {% else -%}
>[!fail] Dubious
{% else %}
>[!quote] Other Highlight >[!quote] Other Highlight
{% endif -%} {% endif -%}
> {{ a.annotatedText }} > {{ a.annotatedText }}
> {{a.date}} > {{ a.date | format("YYYY-MM-DD h:mm a")}}
{%- if a.comment -%} {%- if a.comment %}
>
> *{{ a.comment }}* > *{{ a.comment }}*
> {% endif -%}
{%- endif %} {% 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 -%}