You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
458 B
14 lines
458 B
<?xml version="1.0" encoding="UTF-8"?> |
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1" |
|
xmlns:mix="http://www.loc.gov/mix/" exclude-result-prefixes="mix"> |
|
<xsl:output method="xml" indent="yes"/> |
|
|
|
<xsl:template match="/"> |
|
<xsl:apply-templates select="/descendant::mix:mix[1]"/> |
|
</xsl:template> |
|
|
|
<xsl:template match="mix:mix"> |
|
<xsl:copy-of select="."/> |
|
</xsl:template> |
|
|
|
</xsl:stylesheet> |