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.
12 lines
689 B
XML
12 lines
689 B
XML
<!--
|
|
Description: MathML w/XLink
|
|
Expect: not bozo and entries[0]['description'] == '<math xmlns="http://www.w3.org/1998/Math/MathML"><mrow xlink:href="http://golem.ph.utexas.edu" xlink:show="replace" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink"><mrow><mi>a</mi><mo>+</mo><mi>b</mi></mrow></mrow></math>'
|
|
-->
|
|
<rss version="2.0">
|
|
<channel>
|
|
<item>
|
|
<description><math xmlns='http://www.w3.org/1998/Math/MathML'><mrow xlink:type="simple" xlink:show="replace" xlink:href="http://golem.ph.utexas.edu"><mrow><mi>a</mi><mo>+</mo><mi>b</mi></mrow></mrow></math></description>
|
|
</item>
|
|
</channel>
|
|
</rss>
|