From a1d1cb38fabca0b476d674db044ee050b978f683 Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Wed, 23 Jan 2019 22:29:54 +0100 Subject: [PATCH] Xml Escape for Author Name The following xml contains a unescaped "&", which is not valid: Bulma: Free, open source, & modern CSS framework based on Flexbox bbxdesign@gmail.com This change should fix it. --- docs/atom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/atom.xml b/docs/atom.xml index 487feb380..46f4b96ad 100644 --- a/docs/atom.xml +++ b/docs/atom.xml @@ -9,7 +9,7 @@ {{ site.url }} {{ site.time | date_to_xmlschema }} - {{ site.data.meta.title }} + {{ site.data.meta.title | xml_escape }} bbxdesign@gmail.com -- 2.47.2