When i try to process this file:
http://itunes.apple.com/us/rss/topalbums/limit=25/xml
i just get text output of all by a simple xslt.
I have tried many things with the xslt. This is one of my tries:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<xsl:output method="html"/>
<xsl:template match="/feed">
<h2>
title: <xsl:value-of select="title"/>
</h2>
</xsl:template>
</xsl:stylesheet>
I have tried it with many different match and select values, but i can't get it to work