From 8722232549a81466839d20d2e74e957548c68611 Mon Sep 17 00:00:00 2001 From: Parker TenBroeck <51721964+ParkerTenBroeck@users.noreply.github.com> Date: Sat, 2 May 2026 11:26:45 -0400 Subject: [PATCH] fixed picture issue in RSS/Atom feeds --- templates/macros/feed.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/templates/macros/feed.html b/templates/macros/feed.html index 12be2b1..e90734d 100644 --- a/templates/macros/feed.html +++ b/templates/macros/feed.html @@ -14,9 +14,8 @@ {%- macro content(page) -%} - {%if page.taxonomies.category is containing("photo") %} - {{ figures::image(src=page.extra.picture_src, caption=page.description) }} + {{ figures::image(src=page.extra.picture_src, caption=page.description) | escape_xml | safe }} {% else %} {% if page.summary %}{{ page.summary }}{% else %}{{ page.content }}{% endif %} {% endif %}