Essentialy a XML file.
Some tags are necessary in this XML file :
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" >
<channel>
<title>Le Nom Des Fleurs</title>
<link>https://lndf.fr</link>
<description>Personal Blog of Thomas Guillory</description>
then, for each item
<item>
<title>Entry Title</title>
<link>url of the entry</link>
<guid>unique id</guid>
<pubDate>Wed, January 31 2024</pubDate>
<description>text goes here</description>
</item>
close the xml file with
</channel>
</rss>
Maybe It is supposed to be named index.xml
and be at
root, it seems to have helped…
To add raw html to the description, you need to use
<![CDATA[<html><body>html here</body></html>]]>
Reference
Testing XML
RSS 2.0 specification
SITE
- How to create an rss feed