<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:mei="http://www.music-encoding.org/ns/mei"
    exclude-result-prefixes="xs mei"
    version="3.0">
    <xsl:output method="xml" indent="yes"/>
    <xsl:mode on-no-match="shallow-copy" />
    <xsl:param name="source" as="xs:string"/>

    <xsl:template match="mei:app">
        <!--<xsl:element name="test"/>-->
        <xsl:apply-templates select="mei:rdg[@source=$source]/*" />
    </xsl:template>
</xsl:stylesheet>
