Wondering if there's a way to make an RSS feed as a raw markdown endpoint or something that I could write an update script for myself and just run as a github page maybe.<p>RSS seems like the answer to a lot of my silly problems but I just want to keep it as simple as possible.<p>Obviously I don't know much about it yet but excited to learn more.
RSS is a simple format.
<a href="https://www.w3schools.com/xml/xml_rss.asp" rel="nofollow">https://www.w3schools.com/xml/xml_rss.asp</a><p>There are numerous ways to create an RSS feed, depends what language you like. I used PHP mainly to format the output, loop through a DB of entries or text files even. Very easy to do.
RSS is XML-based. You will need to convert your data into it first before serving it. I've built some RSS feeds, and it's not hard. In fact, I use RSS as an important part of my blog's backup and restore system.