Imported version 2.7.91
[platform/core/uifw/at-spi2-core.git] / xml / remove-annotations.xsl
1 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
2
3   <xsl:template match="@*|node()">
4     <xsl:copy>
5       <xsl:apply-templates select="@*|node()"/>
6     </xsl:copy>
7   </xsl:template>
8
9   <xsl:template match="annotation"/>
10
11   <xsl:output method="xml" indent="yes" encoding="UTF-8"
12     omit-xml-declaration="yes"/>
13
14 </xsl:stylesheet>