It would help if you included some example xml, and how do you want those nodes with the value="Monday" output.
Maybe you could use an Identity transform?
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()[@value='Monday']"/>
</xsl:copy>
</xsl:template>
|