Jump to content

MSFN News Feed XSL transform


wrECKster

Recommended Posts

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

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...