Hi,
I'm creating my own RSS feed to display on my website using feeddigest. I'm wondering if there is any way I can include html in my RSS item description. I've tried the following (using ascii characters and escaping the &), but I'm not getting it to display the tag info on my website. It would be great to be able to have the description display links and images, but links would be the best.
<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
<channel>
<title>OBUUC Latest News</title>
<link>http://www.obuuc.org</link>
<description> Latest News from Olympia Brown Unitarian Universalist Church in Racine, WI </description>
<item>
<title> First Test Item </title>
<description> This is a test to see if I can get this thing to work - lets hope for the best! Lets see if we can put a link in here <a href="http://www.obuuc.org">click</a> <br><b> what about an image: <img src = "http://www.obuuc.org/Tony2.jpg"></description>
</item>
</channel>
</rss>
The output on my website is as follows:
Sep 29 First Test Item
This is a test to see if I can get this thing to work - lets hope for the best! Lets see if we can put a link in here click what about an image:
The word "click" is not a link and there is nothing displayed after "image:".
Thanks,
Courtenay