From 71acd9fa94b9ed8cf9babe87d9de39205fb307fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Tue, 23 Jun 2026 14:14:25 +0200 Subject: [PATCH] fix: escape URLs in sitemap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Timothée Mazzucotelli --- dist/sitemap.xml | 2 +- src/sitemap.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/sitemap.xml b/dist/sitemap.xml index ee67b5d5..469905c7 100644 --- a/dist/sitemap.xml +++ b/dist/sitemap.xml @@ -6,7 +6,7 @@ {%- for page in pages -%} {%- if page.canonical_url %} - {{ page.canonical_url }} + {{ page.canonical_url | escape }} {%- endif -%} {%- endfor %} diff --git a/src/sitemap.xml b/src/sitemap.xml index c1af0e48..d6518a01 100644 --- a/src/sitemap.xml +++ b/src/sitemap.xml @@ -3,7 +3,7 @@ {%- for page in pages -%} {%- if page.canonical_url %} - {{ page.canonical_url }} + {{ page.canonical_url | escape }} {%- endif -%} {%- endfor %}