(note: placing issue under "APIs" since there is no Kagi News category yet. Feel free to move/re-tag to new category once it's created)
Problem Statement
The description for each item in "On This Day" RSS feed (https://kite.kagi.com/onthisday.xml) contains incorrectly escaped HTML thus causing rendering/readability issues in RSS readers.

# curl https://kite.kagi.com/onthisday.xml
...
<lastBuildDate>Tue, 30 Sep 2025 12:55:17 +0000</lastBuildDate>
<item>
...
<description>&lt;b&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Jerome&quot; data-wiki-id=&quot;Q44248&quot; title=&quot;Jerome&quot;&gt;Jerome&lt;/a&gt;&lt;/b&gt; (Bible translator and saint) died.</description>
...
</item>
...
The rss.channel.item.description should contain correctly escaped HTML characters as such:
<b><a href="https://en.wikipedia.org/wiki/Jerome" data-wiki-id="Q44248" title="Jerome">Jerome</a></b> (Bible translator and saint) died.
It should match other feeds which correctly escape HTML related characters: