Hi,
I am trying to use the gsub tag to change all instances of &'s in my feed to & so that I can make the page I am using this digest on xhtml compliant. Here is how I am using gsub.
<gsub from="&" to="&"><a href="%URL%">%TITLE%</a><br /><a href="%URL%">%DESCRIPTION%</a><br /><br />
</gsub>
When I view the source of the rendered digest, the <gsub> tag is still in the code, which is also making my page non-xhtml compliant.
Here is the code of the rendered digest
<!-- fd:YEPMBKVMUR -->
<gsub from="&" to="&"><a href="http://www.nathankowald.com/moblog/fullsize.php?img=9843.jpg&page=1">Playboy 69</a><br /><a href="http://www.nathankowald.com/moblog/fullsize.php?img=9843.jpg&page=1">
<img class="reflect" src="http://www.nathankowald.com/moblog/images/9843.jpg" alt="Playboy 69" width="140"></a><br /><br />
</gsub>
Just wondering if I am doing something wrong.