In <mt:EntryBody>
I have couple of images and caption imbedded in the entry.
I want to strip out all the html for publishing in rss.
Here is my entry formatting:
<img src="/path/to/img.jpg">
<div style="text-align:right">Image Caption</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse</p>
If I do this:
<mt:EntryBody remove_html="1">
This strips out all HTML elements with EntryBody but I would also like to take out Image Caption
part because it look weird without referencing image.
How do I accomplish this?