vault backup: 2025-05-05 10:06:49
This commit is contained in:
parent
f269e271d5
commit
bd198ce046
4
.obsidian/community-plugins.json
vendored
4
.obsidian/community-plugins.json
vendored
@ -7,9 +7,9 @@
|
||||
"highlightr-plugin",
|
||||
"obsidian-icon-folder",
|
||||
"obsidian-pandoc-reference-list",
|
||||
"obsidian-style-settings",
|
||||
"obsidian-tasks-plugin",
|
||||
"templater-obsidian",
|
||||
"obsidian-zotero-desktop-connector",
|
||||
"spacekeys"
|
||||
"spacekeys",
|
||||
"obsidian-style-settings"
|
||||
]
|
||||
10
.obsidian/plugins/colored-tags/data.json
vendored
10
.obsidian/plugins/colored-tags/data.json
vendored
@ -215,7 +215,15 @@
|
||||
"Neural-networks": 203,
|
||||
"Flight-control": 204,
|
||||
"Intelligent-control": 205,
|
||||
"Reinforcement-learning": 206
|
||||
"Reinforcement-learning": 206,
|
||||
"Grokd": 207,
|
||||
"Second_Pass": 208,
|
||||
"In_Second_Pass": 209,
|
||||
"In_First_Pass": 210,
|
||||
"To_Read": 211,
|
||||
"InSecondPass": 212,
|
||||
"InFirstPass": 213,
|
||||
"ToRead": 214
|
||||
},
|
||||
"_version": 3
|
||||
}
|
||||
@ -3,9 +3,8 @@
|
||||
"anuppuccin-theme-settings@@anuppuccin-accent-toggle": true,
|
||||
"anuppuccin-theme-settings-extended@@anp-theme-ext-light": true,
|
||||
"anuppuccin-theme-settings-extended@@anp-theme-ext-dark": true,
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-extended": "ctp-solarized-light",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-notion-dark",
|
||||
"anuppuccin-theme-settings@@anuppuccin-theme-dark": "ctp-frappe",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-extended": "ctp-material-mint-light",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-dracula",
|
||||
"anuppuccin-theme-settings@@anp-custom-checkboxes": true,
|
||||
"anuppuccin-theme-settings@@anp-speech-bubble": true,
|
||||
"anuppuccin-theme-settings@@anp-codeblock-numbers": true,
|
||||
@ -42,8 +41,8 @@
|
||||
"anuppuccin-theme-settings@@anp-h6-color-custom": "none",
|
||||
"anuppuccin-theme-settings@@anp-h2-divider": false,
|
||||
"anuppuccin-theme-settings@@anp-h5-color-custom": "none",
|
||||
"anuppuccin-theme-settings@@anuppuccin-theme-accents": "ctp-accent-yellow",
|
||||
"anuppuccin-theme-settings@@anuppuccin-light-theme-accents": "none",
|
||||
"anuppuccin-theme-settings@@anuppuccin-theme-accents": "ctp-accent-rosewater",
|
||||
"anuppuccin-theme-settings@@anuppuccin-light-theme-accents": "ctp-accent-light-peach",
|
||||
"anuppuccin-theme-settings@@anp-decoration-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-colorful-frame-opacity": 0.4,
|
||||
"anuppuccin-theme-settings@@anp-alt-tab-style": "anp-depth-tab-toggle",
|
||||
|
||||
@ -57,17 +57,23 @@ Imported: {{ importDate | format("YYYY-MM-DD h:mm a") }}
|
||||
| replace('[', '')
|
||||
| replace(']', '')
|
||||
}}{% if not loop.last -%}, {% endif %}{% endfor %}
|
||||
{%- set in_read = false -%}
|
||||
|
||||
{%- set in_read = 0 -%}
|
||||
{%- for collection in collections -%}
|
||||
{%- if collection.name == "Read" -%}
|
||||
{%- set in_read = true -%}
|
||||
{%- if collection.name == "! 3. Grok'd" -%}
|
||||
{%- set in_read = 3 -%}
|
||||
{}
|
||||
{%- endif -%}
|
||||
{%- endfor -%}
|
||||
|
||||
{% if in_read %}
|
||||
- [x] {{title}} #Reading ✅ {{ importDate | format("YYYY-MM-DD") }}
|
||||
{% else %}
|
||||
- ["] {{title}} #Reading
|
||||
{% if in_read == 3 %}
|
||||
#Grokd
|
||||
{% elif in_read == 2%}
|
||||
#InSecondPass
|
||||
{% elif in_read == 1%}
|
||||
#InFirstPass
|
||||
{% elif in_read == 0%}
|
||||
#ToRead
|
||||
{%- endif %}
|
||||
|
||||
{% if abstractNote -%}
|
||||
@ -82,7 +88,8 @@ Imported: {{ importDate | format("YYYY-MM-DD h:mm a") }}
|
||||
>{% for r in relations %}[{{ r.title }}]({{ r.citekey }}){% if not loop.last %}, {% endif %}{% endfor %}
|
||||
|
||||
# Annotations
|
||||
## Notes
|
||||
## [Notes]()
|
||||
## Highlights From Zotero
|
||||
{# Process non-Purple highlights -#}
|
||||
{% for a in annotations -%}
|
||||
{% if a.type == "highlight" and a.colorCategory != "Purple" -%}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user