--- readstatus: false dateread: title: "{{ title }}" year: {{ date | format('YYYY') }} authors: {% for type, creators in creators | groupby('creatorType') %} {% for creator in creators %} - "{% if creator.name %}{{ creator.name }}{% else %}{{ creator.lastName }}, {{ creator.firstName }}{% endif %}" {% endfor %} {% endfor %} citekey: "{{ citekey }}" {% if itemType == "journalArticle" %} journal: "{{ publicationTitle }}" {% endif %} {% if volume %} volume: {{ volume }} {% endif %} {% if issue %} issue: {{ issue }} {% endif %} {% if itemType == "bookSection" %} book: "{{ publicationTitle }}" {% endif %} {% if publisher %} publisher: "{{ publisher }}" {% endif %} {% if place %} location: "{{ place }}" {% endif %} {% if pages %} pages: {{ pages }} {% endif %} --- # Indexing Information {% if DOI %} ## DOI [{{ DOI }}](https://doi.org/{{ DOI }}) {% endif %} {% if ISBN %} ## ISBN [{{ ISBN }}](https://www.isbnsearch.org/isbn/{{ ISBN }}) {% endif %} ## Tags: {% for t in tags %}#{{ t.tag | replace(' ', '-') | replace('&', 'and') | replace('<', '') | replace('>', '') | replace('#', '') | replace('*', '') | replace('(', '') | replace(')', '') | replace('[', '') | replace(']', '') }}{% if not loop.last %}, {% endif %}{% endfor %} - ["] {{title}} #Reading >[!Abstract] >{% if abstractNote %}{{abstractNote}}{% endif %} >[!note] Markdown Notes >{% if markdownNotes %}{{markdownNotes}}{% else %}{{ "None!" }}{% endif %} >[!seealso] Related Papers >{% for r in relations %}[{{ r.title }}]({{ r.citekey }}){% if not loop.last %}, {% endif %}{% endfor %} # Annotations {# Process non-Purple highlights #} {% for a in annotations %} {% if a.type == "highlight" and a.colorCategory != "Purple" %} {% if a.colorCategory == "Yellow" %} >[!attention] Highlight {% elif a.colorCategory == "Green" %} >[!done] Quote {% elif a.colorCategory == "Orange" %} >[!question] Don't Understand {% elif a.colorCategory == "Red" %} >[!fail] Possibly Incorrect {% else %} >[!quote] Other Highlight {% endif %} > *{{ a.annotatedText }}* > {% if a.comment %} > >[!note] Note > >{{ a.comment }} > {% endif %} {% endif %} {% endfor %} ## Tasks {# Create a separate loop for Purple highlights as tasks #} {% for a in annotations %} {% if a.type == "highlight" and a.colorCategory == "Purple" %} - [ ] {{ a.annotatedText }} {% if a.comment %} > Note: {{ a.comment }} {% endif %} {% endif %} {% endfor %} ### Imported: {{ importDate | format("YYYY-MM-DD h:mm a") }}