Fix missing XML namespace in RSS feeds

I got a whole bunch of errors while trying to import my subscriptions into another feedreader, and among them were these feeds because the `atom` XML namespace was not specified. The W3C validator was not happy either!
add-xmlns-atom
lucidiot 2023-10-14 04:40:30 +00:00
parent 2d332e20aa
commit 81d83c12fe
1 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@ up: html rss
# make episodes rss
episoderss:
#!/usr/bin/env zsh
echo "<rss version=\"2.0\"><channel><title>cleric + thief</title>" > www/episodes.xml
echo "<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"http://tilde.town/~dozens/clericthief/episodes.xml\"/>" >> www/episodes.xml
echo '<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>cleric + thief</title>' > www/episodes.xml
echo '<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/episodes.xml"/>' >> www/episodes.xml
ed -s << HEREDOC src/index.md | recfmt -f templates/blogitem.rec.template | m4 >> www/episodes.xml
/BEGIN/ka
/END/kb
@ -44,8 +44,8 @@ episoderss:
# make journal rss
journalrss:
#!/usr/bin/env zsh
echo "<rss version=\"2.0\"><channel><title>cleric + thief</title>" > www/journal.xml
echo "<link>http://tilde.town/~dozens/clericthief/index.html</link><description>behind the scenes of cleric + thief</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"http://tilde.town/~dozens/clericthief/journal.xml\"/>" >> www/journal.xml
echo '<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>cleric + thief</title>' > www/journal.xml
echo '<link>http://tilde.town/~dozens/clericthief/index.html</link><description>behind the scenes of cleric + thief</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/journal.xml"/>' >> www/journal.xml
ed -s !'markdown src/journal.md' << HEREDOC | recfmt -f templates/journalitem.rec.template | m4 >> www/journal.xml
/BEGIN/ka
/END/kb