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.
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<!--
|
|
Description: SVG
|
|
Expect: 1
|
|
-->
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<entry>
|
|
<content type="xhtml">
|
|
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
<p>Before</p>
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<metadata>
|
|
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
<cc:Work rdf:about="">
|
|
<dc:title>Christmas Tree</dc:title>
|
|
<dc:description></dc:description>
|
|
<dc:creator>
|
|
<cc:Agent>
|
|
<dc:title>Aaron Spike</dc:title>
|
|
</cc:Agent>
|
|
</dc:creator>
|
|
</cc:Work>
|
|
<cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
|
|
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
|
|
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
|
|
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
|
|
</cc:License>
|
|
</rdf:RDF>
|
|
</metadata>
|
|
</svg>
|
|
<p>After</p>
|
|
</div>
|
|
</content>
|
|
</entry>
|
|
</feed>
|