summaryrefslogtreecommitdiff
path: root/tools/xml-notes-limit.xsl
blob: 4b8a2232b0fdaee59059ce7c075f5fc501bf905d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">
  <xsl:output method="xml" indent="yes"/>
  <xsl:param name="number" />

  <xsl:template match="notes">
    <xsl:copy>
      <xsl:copy-of select="@*" />
      <xsl:apply-templates select="note[position()&lt;=$number]" />
    </xsl:copy>
  </xsl:template>

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

</xsl:stylesheet>