Skip to content

Instantly share code, notes, and snippets.

@rajeshpv
Created June 5, 2011 19:52
Show Gist options
  • Select an option

  • Save rajeshpv/1009332 to your computer and use it in GitHub Desktop.

Select an option

Save rajeshpv/1009332 to your computer and use it in GitHub Desktop.
xslt example
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="/cat">
<xsl:copy>
<xsl:apply-templates select="mName"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment