Compare commits

...

2 Commits

Author SHA1 Message Date
fdd8e19aa3 Update pre-commit hook versions for uv-pre-commit and ruff
Some checks failed
Test and build Docker image / docker (push) Failing after 38s
2025-06-25 05:41:13 +02:00
2ef03c8b45 Fix formatting of tags in /custom 2025-06-25 05:38:47 +02:00
2 changed files with 254 additions and 254 deletions

View File

@ -1,7 +1,7 @@
repos:
# Ensure the lockfile is up-to-date and autoexport uv.lock to requirements.txt
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.7.12
rev: 0.7.14
hooks:
- id: uv-lock
- id: uv-export
@ -45,7 +45,7 @@ repos:
# An extremely fast Python linter and formatter.
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.13
rev: v0.12.0
hooks:
- id: ruff-format
- id: ruff

View File

@ -14,90 +14,90 @@
<li>You can use \n to create a new line.</li>
<li>
You can remove the embed from links by adding < and> around the link. (For example <
{% raw %} {{ entry_link }} {% endraw %}>)
{% raw %} {{entry_link}} {% endraw %}>)
</li>
<br />
<li>
<code>
{% raw %}
{{ feed_author }}
{{feed_author}}
{% endraw %}
</code>{{ feed.author }}
</li>
<li>
<code>
{% raw %}
{{ feed_added }}
{{feed_added}}
{% endraw %}
</code>{{ feed.added }}
</li>
<li>
<code>
{% raw %}
{{ feed_last_exception }}
{{feed_last_exception}}
{% endraw %}
</code>{{ feed.last_exception }}
</li>
<li>
<code>
{% raw %}
{{ feed_last_updated }}
{{feed_last_updated}}
{% endraw %}
</code>{{ feed.last_updated }}
</li>
<li>
<code>
{% raw %}
{{ feed_link }}
{{feed_link}}
{% endraw %}
</code>{{ feed.link }}
</li>
<li>
<code>
{% raw %}
{{ feed_subtitle }}
{{feed_subtitle}}
{% endraw %}
</code>{{ feed.subtitle }}
</li>
<li>
<code>
{% raw %}
{{ feed_title }}
{{feed_title}}
{% endraw %}
</code>{{ feed.title }}
</li>
<li>
<code>
{% raw %}
{{ feed_updated }}
{{feed_updated}}
{% endraw %}
</code>{{ feed.updated }}
</li>
<li>
<code>
{% raw %}
{{ feed_updates_enabled }}
{{feed_updates_enabled}}
{% endraw %}
</code>{{ feed.updates_enabled }}
</li>
<li>
<code>
{% raw %}
{{ feed_url }}
{{feed_url}}
{% endraw %}
</code>{{ feed.url }}
</li>
<li>
<code>
{% raw %}
{{ feed_user_title }}
{{feed_user_title}}
{% endraw %}
</code>{{ feed.user_title }}
</li>
<li>
<code>
{% raw %}
{{ feed_version }}
{{feed_version}}
{% endraw %}
</code>{{ feed.version }}
</li>
@ -106,14 +106,14 @@
<li>
<code>
{% raw %}
{{ entry_added }}
{{entry_added}}
{% endraw %}
</code>{{ entry.added }}
</li>
<li>
<code>
{% raw %}
{{ entry_author }}
{{entry_author}}
{% endraw %}
</code>{{ entry.author }}
</li>
@ -121,14 +121,14 @@
<li>
<code>
{% raw %}
{{ entry_content }}
{{entry_content}}
{% endraw %}
</code>{{ entry.content[0].value|discord_markdown }}
</li>
<li>
<code>
{% raw %}
{{ entry_content_raw }}
{{entry_content_raw}}
{% endraw %}
</code>{{ entry.content[0].value }}
</li>
@ -136,42 +136,42 @@
<li>
<code>
{% raw %}
{{ entry_id }}
{{entry_id}}
{% endraw %}
</code>{{ entry.id }}
</li>
<li>
<code>
{% raw %}
{{ entry_important }}
{{entry_important}}
{% endraw %}
</code>{{ entry.important }}
</li>
<li>
<code>
{% raw %}
{{ entry_link }}
{{entry_link}}
{% endraw %}
</code>{{ entry.link }}
</li>
<li>
<code>
{% raw %}
{{ entry_published }}
{{entry_published}}
{% endraw %}
</code>{{ entry.published }}
</li>
<li>
<code>
{% raw %}
{{ entry_read }}
{{entry_read}}
{% endraw %}
</code>{{ entry.read }}
</li>
<li>
<code>
{% raw %}
{{ entry_read_modified }}
{{entry_read_modified}}
{% endraw %}
</code>{{ entry.read_modified }}
</li>
@ -179,14 +179,14 @@
<li>
<code>
{% raw %}
{{ entry_summary }}
{{entry_summary}}
{% endraw %}
</code>{{ entry.summary|discord_markdown }}
</li>
<li>
<code>
{% raw %}
{{ entry_summary_raw }}
{{entry_summary_raw}}
{% endraw %}
</code>{{ entry.summary }}
</li>
@ -194,21 +194,21 @@
<li>
<code>
{% raw %}
{{ entry_title }}
{{entry_title}}
{% endraw %}
</code>{{ entry.title }}
</li>
<li>
<code>
{% raw %}
{{ entry_text }}
{{entry_text}}
{% endraw %}
</code> Same as entry_content if it exists, otherwise entry_summary
</li>
<li>
<code>
{% raw %}
{{ entry_updated }}
{{entry_updated}}
{% endraw %}
</code>{{ entry.updated }}
</li>
@ -216,7 +216,7 @@
<li>
<code>
{% raw %}
{{ image_1 }}
{{image_1}}
{% endraw %}
</code>First image in the entry if it exists
</li>
@ -226,7 +226,7 @@
<li>
<code>
{% raw %}
{{ feed_title }}\n{{ entry_content }}
{{feed_title}}\n{{entry_content}}
{% endraw %}
</code>
</li>