RSS specificiations for the "Additional Content" namespace
This is based off of Extending RSS 2.0 With Namespaces from Disobey.com. It probably doesn't quite fit the specs perfectly, but it works sufficiently enough for me to intepret.
To call, add a link to this spec into your opening RSS tag. e.g:
<rss version="2.0" xmlns:AddnContent="https://hare-she-comes.neocities.org/AddnContentSpec">
Tags fall within each <item> of the feed. None of these tags are required, unless otherwise stated.
The tags available currently are:
<AddnContent:Categories>
- This is a semi-colon separated list of categories to be displayed or filtered by for blog posts.
- Example:
<AddnContent:Categories>Musings; Yearly Themes</AddnContent:Categories>
<AddnContent:ContentWarnings>
- Any content warnings for the post that readers should be aware of before reading. Tag should be omitted if none exist.
- Example:
<AddnContent:ContentWarnings> Discussions of kink and consent </AddnContent:ContentWarnings>
An example fully formatted feed is:
<?xml version="1.0" encoding="utf-8"?> <rss version="2.0" xmlns:AddnContent="https://hare-she-comes.neocities.org/AddnContentSpec"> <channel> <title>Hare She Comes</title> <link>https://hare-she-comes.neocities.org</link> <description>Hare's little spot on the internet</description> <language>en-au</language> <lastBuildDate>Sat, 08 Aug 2026 16:00:00 +0800</lastBuildDate> <ttl>20000</ttl> <item> <title>Managing My Life</title> <link>https://hare-she-comes.neocities.org/posts/2026-08-08-Managing-My-Life</link> <description> An introduction to how I manage my life, and my 'social event decision tree.' </description> <pubDate>Sat, 08 Aug 2026 13:00:00 +0800</pubDate> <guid>https://hare-she-comes.neocities.org/posts/2026-08-08-Managing-My-Life</guid> <AddnContent:Categories>Life management; Anxiety</AddnContent:Categories> </item> <item> <title>A Love Letter to Girl-Things</title> <link>https://hare-she-comes.neocities.org/posts/2026-07-27-A-Love-Letter-to-Girl-Things</link> <description> Musings on the wonderous world of kink and girlthings. </description> <pubDate>Mon, 27 Jul 2026 13:00:00 +0800</pubDate> <guid>https://hare-she-comes.neocities.org/posts/2026-07-27-A-Love-Letter-to-Girl-Things</guid> <AddnContent:Categories>Musings; Kink; Gender</AddnContent:Categories> <AddnContent:ContentWarnings>Discussions of kink, incl. details of my own preferences</AddnContent:ContentWarnings> </item> <item> <title>This Godforesaken Year</title> <link>https://hare-she-comes.neocities.org/posts/2024-12-31-This-Godforesaken-Year</link> <description> I look forward to bidding this godforsaken year adieu. A year where so much went to hell in a handbasket, when I realised just how much I needed a blog like this. </description> <pubDate>Tue, 31 Dec 2024 13:00:00 +0800</pubDate> <guid>https://hare-she-comes.neocities.org/posts/2024-12-31-This-Godforesaken-Year</guid> <AddnContent:Categories>Trauma recovery; Musings</AddnContent:Categories> <AddnContent:ContentWarnings>Implied trauma recovery</AddnContent:ContentWarnings> </item> </channel> </rss>