unstory

If this is the solution, I want my problem back.

RSS, Atom, JSON Feed and leaf

4 web feed formats:

Leaf - 9 lines

https://unstory.eu/leaf.txt
https://unstory.eu/ unstory
---
https://unstory.eu/wio/
2026-06-19
# I love leaf file
Sharing my *leaf* of https://unstory.eu/ with the world.

The world is not the same.

RSS - 15 lines

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>unstory</title>
    <link>https://unstory.eu/</link>
    <description>unstory</description>
    <item>
      <title>I love leaf file</title>
      <link>https://unstory.eu/wio/</link>
      <guid>https://unstory.eu/wio/</guid>
      <pubDate>Thu, 19 Jun 2026 00:00:00 +0000</pubDate>
      <description>&lt;p&gt;Sharing my &lt;em&gt;leaf&lt;/em&gt; of &lt;a href=&quot;https://unstory.eu/&quot;&gt;https://unstory.eu/&lt;/a&gt; with the world.&lt;/p&gt;&lt;p&gt;The world is not the same.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>

Atom 16 lines

<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>unstory</title>
  <link href="https://unstory.eu/"/>
  <link rel="self" href="https://unstory.eu/atom.xml"/>
  <id>https://unstory.eu/</id>
  <updated>2026-06-19T00:00:00Z</updated>
  <entry>
    <title>I love leaf file</title>
    <link href="https://unstory.eu/wio/"/>
    <id>https://unstory.eu/wio/</id>
    <published>2026-06-19T00:00:00Z</published>
    <updated>2026-06-19T00:00:00Z</updated>
    <content type="html">&lt;p&gt;Sharing my &lt;em&gt;leaf&lt;/em&gt; of &lt;a href=&quot;https://unstory.eu/&quot;&gt;https://unstory.eu/&lt;/a&gt; with the world.&lt;/p&gt;&lt;p&gt;The world is not the same.&lt;/p&gt;</content>
  </entry>
</feed>

JSON Feed 15 lines

{
  "version": "https://jsonfeed.org/version/1.1",
  "title": "unstory",
  "home_page_url": "https://unstory.eu/",
  "feed_url": "https://unstory.eu/feed.json",
  "items": [
    {
      "id": "https://unstory.eu/wio/",
      "url": "https://unstory.eu/wio/",
      "title": "I love leaf file",
      "date_published": "2026-06-19T00:00:00Z",
      "content_html": "<p>Sharing my <em>leaf</em> of <a href=\"https://unstory.eu/\">https://unstory.eu/</a> with the world.</p><p>The world is not the same.</p>"
    }
  ]
}

All 4 feed formats include the same information. One shared article.