I’ve manually built RSS multiple times for static site generators, I was hoping that there was an existing template.
Yes my plan would be to do a GitHub Actions build process using NodeJS to generate this automatically. Saq documented this so I should be able to extend it.
Here’s an example done in the Liquid templating language for an Atom feed:
It’s just a single file, the core loop is fairly self explanatory:
<item>
<title>Tiddler Title</title>
<dc:creator>Author</dc:creator>
<description>The full content of the tiddler</description>
<pubDate>RFC822 Publish Date</pubDate>
<link>Link to Tiddler</link>
<guid isPermaLink="true">Link to Tiddler</guid>
</item>