-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfeed.xml
More file actions
22 lines (22 loc) · 743 Bytes
/
Copy pathfeed.xml
File metadata and controls
22 lines (22 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<!--
Edge case: an RSS feed (XML). No HTML <body>; querySelector('body')
is null. Many sites expose /feed or /rss endpoints that get crawled.
-->
<rss version="2.0">
<channel>
<title>Test Feed</title>
<link>https://mattscepter.github.io/testWebsite/</link>
<description>RSS feed fixture with no HTML body element</description>
<item>
<title>First item</title>
<link>https://mattscepter.github.io/testWebsite/page5.html</link>
<description>Item one</description>
</item>
<item>
<title>Second item</title>
<link>https://mattscepter.github.io/testWebsite/page6.html</link>
<description>Item two</description>
</item>
</channel>
</rss>