Skip to content

Instantly share code, notes, and snippets.

@xmorave2
Created December 2, 2015 11:04
Show Gist options
  • Save xmorave2/00db1f2cf043a9ec3058 to your computer and use it in GitHub Desktop.
Save xmorave2/00db1f2cf043a9ec3058 to your computer and use it in GitHub Desktop.
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:marc="http://www.loc.gov/MARC21/slim"
version="1.0">
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
<xsl:strip-space elements="*"/>
<xsl:template match="marc:controlfield[@tag=005]"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="marc:datafield[@tag=995]">
<controlfield tag="005" xmlns="http://www.loc.gov/MARC21/slim"><xsl:value-of select="marc:subfield[@code='a']" /></controlfield>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment