summaryrefslogtreecommitdiff
path: root/tests/general/bug-196.xsl
blob: d5030f288e77b88a3ba2af76dbd337ea03c41c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

    <xsl:template match="node()|@*">
        <xsl:copy>
            <xsl:apply-templates select="node()|@*" />
        </xsl:copy>
    </xsl:template>

    <xsl:template match="processing-instruction()">
        <xsl:processing-instruction name="{name()}">
            <xsl:value-of select="."/>
            <xsl:text> id="</xsl:text>
            <xsl:number count="processing-instruction()" level="any" />
            <xsl:text>"</xsl:text>
        </xsl:processing-instruction>
    </xsl:template>

</xsl:stylesheet>