I have a SharePoint 2007 site the exposes RSS feeds to a static HTML page. The static page will aggregate and display them via jQuery AJAX. The problem is that SharePoint includes the name and value of the columns in the body of the feed (go to link and search for body) which makes my page look like this:

Note the Body: after the date and before the description. I don't want that there column names in the feed. How do I tell SharePoint to exclude the column names? Here is a section of the feed. You can See Body is included in the feed item description.
<item>
<title>Sample Post #3</title>
<link>http://example.com/ViewPost.aspx?ID=4</link>
<description><![CDATA[<div><b>Body:</b> <div class=ExternalClass2325D3CC73DB4C30BE5AB60A06E681F9><div>
<div id=lipsum>
<p>Lorem ipsum dolor sit amet... </p>
</div></div></div></div>
<div><b>Category:</b> Category 1</div>
<div><b>Published:</b> 12/29/2011 9:11 PM</div>
]]></description>
<!--extraneous elements deleted for brevity -->
</item>