From de0e840578b38c54d13363a3cd7aadcfbd794473 Mon Sep 17 00:00:00 2001 From: Nathan Upchurch <nathan@upchur.ch> Date: Fri, 24 Jan 2025 14:27:03 -0600 Subject: [PATCH] Fix another XML issue --- content/feeds.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/feeds.njk b/content/feeds.njk index fd9868d..dd7e696 100644 --- a/content/feeds.njk +++ b/content/feeds.njk @@ -33,7 +33,7 @@ permalink: "/feeds/{{ tag | slugify }}.xml" {% if post.data.imageURL %}{% set imageURL %}{{ post.data.imageURL | htmlBaseUrl(metadata.url) }}{% endset %}{% endif %} {% set defaultImageURL %}{{ metadata.defaultPostImageURL | htmlBaseUrl(metadata.url) }}{% endset %} <entry> - <title>{{ post.data.title | safe }}</title> + <title>{{ post.data.title }}</title> <description>{{ post.data.description | truncate(150) }}</description> <link href="{{ absolutePostUrl }}"/> <updated>{{ post.date | dateToRfc3339 }}</updated>