Skip to content

Instantly share code, notes, and snippets.

@ameliaikeda
Created October 28, 2013 23:52
Show Gist options
  • Save ameliaikeda/7206894 to your computer and use it in GitHub Desktop.
Save ameliaikeda/7206894 to your computer and use it in GitHub Desktop.
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
<xsl:output omit-xml-declaration="yes" method="xml" encoding="UTF-8" />
<xsl:template match = "/icestats" >
<pre>
<xsl:for-each select="source">
<xsl:value-of select="artist" /> - <xsl:value-of select="title" />
</xsl:for-each>
</pre>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment