<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:d="http://adn.dlese.org"
    exclude-result-prefixes="d"
    version="1.0">

	<xsl:output method="xml" encoding="UTF-8" indent="yes"/>

	<xsl:variable name="newline">
	<xsl:text>
	</xsl:text>
	</xsl:variable>

	<xsl:template match="*|/">
	     <xsl:apply-templates/>
	</xsl:template>   
         
	<xsl:template match="*|/">
         <xsl:copy>
             <xsl:for-each select="@*">
             <!-- to preserve attributes in the input xml document; so that they appear in the output xml documet; e.g. URI -->
                 <xsl:copy/>
             </xsl:for-each>
             <xsl:apply-templates/>
         </xsl:copy>
     </xsl:template>

     <xsl:template match="d:metaMetadata/d:contributors"/>
     <!--use a blank template to prevent metaMetadata.contributors from being copied over-->

</xsl:stylesheet>

