1<!-- Copyright: Mark Pilgrim (feed parser test suite). See LICENSE.UNITTESTS for details. -->
2<feed xmlns="http://www.w3.org/2005/Atom">
3    <entry>
4        <title>A &amp; B. The history of the &lt;blink> tag.</title>
5    </entry>
6    <entry>
7        <title type="text">A &amp; B. The history of the &lt;blink> tag.</title>
8    </entry>
9    <entry>
10        <title type="html">A &amp;amp; B. The history of the &amp;lt;blink> tag. And a &lt;a href=&quot;http://www.example.com/&quot;>link&lt;/a>.</title>
11    </entry>
12    <entry>
13        <title type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">History of the &lt;blink&gt; tag</div></title>
14    </entry>
15
16    <entry>
17        <title type="text/plain">A &amp; B. The history of the &lt;blink> tag.
18            This one is actually invalid in Atom 1.0.</title>
19        <content>title with type=text/plain. This is not valid in Atom 1.0, where type must be one of text|html|xhtml.
20        So libsyndication does not parse it for now. If this becomes a problem with real-world feeds,
21        we might parse less strict in future.</content>
22    </entry>
23    <entry>
24        <title type="application/octet-stream">
25            RXhhbXBsZSA8Yj5BdG9tPC9iPg==
26        </title>
27        <content>Invalid. base64-encoded title with type=application/octet-stream. Types other than text,
28            html, xhtml are invalid in Atom 1.0.</content>
29    </entry>
30</feed>