mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
0e82c5f573
Adjusted code for custom RSS feed parsing now that feedparser does the parsing for us all we do is pull the data from the returned entries.
15 lines
529 B
XML
15 lines
529 B
XML
<!--
|
|
SkipUnless: feedparser.BeautifulSoup
|
|
Description: unicode character in microformat
|
|
Expect: not bozo and entries[0].vcard == u'BEGIN:vCard\nVERSION:3.0\nFN:Tantek \xc7elik\nN:\xc7elik;Tantek\nURL:http://tantek.com/\nEND:vCard'
|
|
-->
|
|
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
|
<channel>
|
|
<item>
|
|
<content:encoded>
|
|
<![CDATA[<span class="vcard"><a class="url fn" href="http://tantek.com/">Tantek Çelik</a></span>]]>
|
|
</content:encoded>
|
|
</item>
|
|
</channel>
|
|
</rss>
|