Move the matrix declarations to the .c file instead of the header
[sdlpango.git] / Wix / shave.xslt
blob17029bc4887119eb6ab4b6eee30f14fdcb96a6cc
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:n="http://schemas.microsoft.com/wix/2003/01/wi" exclude-result-prefixes="n">
3 <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
4 <xsl:template match="/">
5 <xsl:apply-templates />
6 </xsl:template>
7 <xsl:template match="n:Wix">
8 <Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
9 <xsl:apply-templates/>
10 </Wix>
11 </xsl:template>
12 <xsl:template match="@*|node()">
13 <xsl:copy>
14 <xsl:apply-templates select="@*|node()"/>
15 </xsl:copy>
16 </xsl:template>
17 </xsl:stylesheet>