summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/xml-notes-dump.xsl2
-rw-r--r--tools/xml-notes-limit.xsl2
-rw-r--r--tools/xml-notes-sort.xsl2
-rw-r--r--tools/xml-notes-to-atom.xsl2
-rw-r--r--tools/xml-to-html.xsl2
5 files changed, 5 insertions, 5 deletions
diff --git a/tools/xml-notes-dump.xsl b/tools/xml-notes-dump.xsl
index 79b9606..c1ba20b 100644
--- a/tools/xml-notes-dump.xsl
+++ b/tools/xml-notes-dump.xsl
@@ -16,7 +16,7 @@
</xsl:copy>
</xsl:template>
- <xsl:template match="node()" priority="0">
+ <xsl:template match="node()" priority="-1">
<xsl:copy>
<xsl:copy-of select="@*" />
<xsl:apply-templates />
diff --git a/tools/xml-notes-limit.xsl b/tools/xml-notes-limit.xsl
index 149cbd9..4b8a223 100644
--- a/tools/xml-notes-limit.xsl
+++ b/tools/xml-notes-limit.xsl
@@ -12,7 +12,7 @@
</xsl:copy>
</xsl:template>
- <xsl:template match="node()" priority="0">
+ <xsl:template match="node()" priority="-1">
<xsl:copy>
<xsl:copy-of select="@*" />
<xsl:apply-templates />
diff --git a/tools/xml-notes-sort.xsl b/tools/xml-notes-sort.xsl
index 9d6ac70..9a274ee 100644
--- a/tools/xml-notes-sort.xsl
+++ b/tools/xml-notes-sort.xsl
@@ -23,7 +23,7 @@
</xsl:copy>
</xsl:template>
- <xsl:template match="node()" priority="0">
+ <xsl:template match="node()" priority="-1">
<xsl:copy>
<xsl:copy-of select="@*" />
<xsl:apply-templates />
diff --git a/tools/xml-notes-to-atom.xsl b/tools/xml-notes-to-atom.xsl
index 3c1f07f..a33fb67 100644
--- a/tools/xml-notes-to-atom.xsl
+++ b/tools/xml-notes-to-atom.xsl
@@ -61,7 +61,7 @@
</entry>
</xsl:template>
- <xsl:template match="node()" priority="0">
+ <xsl:template match="node()" priority="-1">
<xsl:copy>
<xsl:copy-of select="@*" />
<xsl:apply-templates />
diff --git a/tools/xml-to-html.xsl b/tools/xml-to-html.xsl
index d6f4061..ef950b2 100644
--- a/tools/xml-to-html.xsl
+++ b/tools/xml-to-html.xsl
@@ -140,7 +140,7 @@
</xsl:copy>
</xsl:template>
- <xsl:template mode="body" match="@* | node()" priority="0">
+ <xsl:template mode="body" match="@* | node()" priority="-1">
<xsl:copy>
<xsl:copy-of select="@*" />
<xsl:apply-templates mode="body" />