Fix missing reset of index
[TortoiseGit.git] / doc / Aspell / removetags.xsl
blobf9d2b3a98487ad1bc7e5de615b0fce52c42d7347
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2 version='1.0'>
4 <xsl:output method="xml"
5 encoding="UTF-8"
6 indent="no"/>
8 <xsl:template match="screen|literal|filename|programlisting|option|primary"/>
9 <xsl:template match='*[@condition="pot"]'/>
10 <xsl:template match="comment()"/>
12 <xsl:template match="node() | @*">
13 <xsl:copy>
14 <xsl:apply-templates select="@* | node()"/>
15 </xsl:copy>
16 </xsl:template>
18 </xsl:stylesheet>