Has anyone done an xsl transform on any of the news feed?  I think I must be doing something wrong in the xsl but not sure what? XSL follow  <?xml version="1.0" encoding="utf-8" ?>  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">  <xsl:template match="/"> <table width="170" border="0" cellspacing="0" cellpadding="1">  	 <xsl:for-each select="rss/channel/item">         <tr>           <td><a href="{link}"><xsl:value-of select="title"/></a></td>         </tr> 	</xsl:for-each> </table> </xsl:template> </xsl:stylesheet> Thanks