We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Obsidian plugin settings Highlight template
{% if is_new_article %} # {{title}} ## Metadata {% if author %}- Author: [{{author}}]({{authorUrl}}){% endif %} - Title: {{title}} {% if url %}- Reference: {{url}}{% endif %} - Category: #article {% endif %} {%- if is_new_article %} ## Page Notes {% for highlight in page_notes -%} {{highlight.annotation}} {%- if highlight.tags | length %} Tags: {% for tag in highlight.tags -%} #{{tag | replace(" ", "-")+" "}}{%- endfor %} {% endif %} {% endfor %} {%- else -%} {%- for highlight in page_notes -%} {{highlight.annotation}} {%- if highlight.tags | length %} Tags: {% for tag in highlight.tags -%} #{{tag | replace(" ", "-")+" "}}{%- endfor %} {% endif %} {% endfor %} {%- endif -%} {%- if is_new_article -%} ## Highlights {% for highlight in highlights -%} - {{highlight.text}} — [Updated on {{highlight.updated}}]({{highlight.incontext}}) {%- if 'Private' != highlight.group %} — Group: #{{highlight.group | replace(" ", "-")}}{% endif %} {% if highlight.tags | length %} - Tags: {% for tag in highlight.tags %} #{{tag | replace(" ", "-")+" "}}{% endfor %} {% endif -%} {% if highlight.annotation %} - Annotation: {{highlight.annotation}}{% endif %} {% endfor %} {%- else -%} {%- for highlight in highlights -%} - {{highlight.text}} — [Updated on {{highlight.updated}}]({{highlight.incontext}}) {%- if 'Private' != highlight.group %} — Group: #{{highlight.group | replace(" ", "-")}}{% endif %} {% if highlight.tags | length %} - Tags: {% for tag in highlight.tags %} #{{tag | replace(" ", "-")+" "}}{% endfor %} {% endif -%} {% if highlight.annotation %} - Annotation: {{highlight.annotation}}{% endif %} {% endfor %}{% endif %}
The text was updated successfully, but these errors were encountered:
However, it still can't solve the synchronization problem of highlighting note deletion and modification
Sorry, something went wrong.
Optimized note layout and removed Page Note.
{% if is_new_article %} # {{title}} ## Metadata {% if author %}- Author: [{{author}}]({{authorUrl}}){% endif %} - Title: {{title}} {% if url %}- Reference: {{url}}{% endif %} - Category: #article {% endif %} {%- if is_new_article -%} ## Highlights {% for highlight in highlights -%} >[!note] Web : [Updated on {{highlight.updated}}]({{highlight.incontext}}) {%- if 'Private' != highlight.group %} #{{highlight.group | replace(" ", "-")}}{% endif %} >> {{highlight.text}} > {% if highlight.annotation %}> Annotation: {{highlight.annotation}}{% endif %} {% endfor %} {%- else -%} {%- for highlight in highlights -%} >[!note] Web : [Updated on {{highlight.updated}}]({{highlight.incontext}}) {%- if 'Private' != highlight.group %} #{{highlight.group | replace(" ", "-")}}{% endif %} >> {{highlight.text}} > {% if highlight.annotation %}> Annotation: {{highlight.annotation}}{% endif %} {% endfor %} {% endif %}
No branches or pull requests
Obsidian plugin settings
Highlight template
The text was updated successfully, but these errors were encountered: