atom feed: use plain-text for title and summary - saait - the most boring static page generator
 (HTM) git clone git://git.codemadness.org/saait
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 87e1bf523941ea432006f5f4c2a23d5c54c4fed5
 (DIR) parent 939b8911eb315e93b74459695a848aecef5206a1
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Thu,  2 May 2019 20:02:51 +0200
       
       atom feed: use plain-text for title and summary
       
       Diffstat:
         M templates/atom.xml/item.xml         |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/templates/atom.xml/item.xml b/templates/atom.xml/item.xml
       @@ -1,5 +1,5 @@
        <entry>
       -        <title type="html">${title}</title>
       +        <title type="text">${title}</title>
                <link rel="alternate" type="text/html" href="${siteurl}/${filename}" />
                <id>${siteurl}/${filename}</id>
                <updated>${updated}T00:00:00Z</updated>
       @@ -8,5 +8,5 @@
                        <name>${author}</name>
                        <uri>${siteurl}</uri>
                </author>
       -        <summary type="html">${description}</summary>
       +        <summary type="text">${description}</summary>
        </entry>