From 83e002191317ad8834d143ba8f844b36460770d1 Mon Sep 17 00:00:00 2001 From: Emmanuel Bernard Date: Wed, 11 Oct 2023 15:03:14 +0200 Subject: [PATCH] Fix blog feed - Fix liquid string concatenation --- blog.atom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog.atom b/blog.atom index bda70aa5447..493f35f8aa0 100644 --- a/blog.atom +++ b/blog.atom @@ -23,7 +23,7 @@ layout: none {{ post.author.name | xml_escape }} {% endif %} {% if post.excerpt %} - {% assign moreHtml = "
Read more..." %} + {% capture moreHtml %}
Read more...{% endcapture %} {{ post.excerpt | xml_escape }} {{ moreHtml | xml_escape }} {% else %} {{ post.content | xml_escape }}