RSS / Atom Feed
Little Eye detects RSS / Atom Feed when you copy them. Recognizes RSS 2.0 and Atom 1.0 feeds and reports the channel title, item count, and latest post date.
Examples
RSS 2.0
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>My Blog</title>
<link>https://example.com</link>
<description>Latest posts</description>
<item><title>Post 1</title></item>
<item><title>Post 2</title></item>
</channel>
</rss>
Atom 1.0
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>My Blog</title>
<link href="https://example.com" rel="alternate"/>
<updated>2026-06-01T00:00:00Z</updated>
<entry><title>Post 1</title></entry>
</feed>