blob: 59bdbe392ff153e97d4a9a19987e8c2a50a4767f [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- Filename: EmbeddedRelative.xsl -->
<xsl:template match="/list">
<embedded-relative-level2>
<xsl:apply-templates select="@*|node()"/>
</embedded-relative-level2>
</xsl:template>
<xsl:template match="item">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>