Skip to content

Instantly share code, notes, and snippets.

@josteinaj
Created September 30, 2014 13:33
Show Gist options
  • Save josteinaj/6bbdea499a7899f18e25 to your computer and use it in GitHub Desktop.
Save josteinaj/6bbdea499a7899f18e25 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0">
<xsl:output method="text"/>
<xsl:template match="/*">
<xsl:for-each select="/metadata/versioning/versions/version">
<xsl:value-of select="normalize-space(.)"/>
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment