You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
456 B
15 lines
456 B
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
|
<xsl:output method="xml" encoding='UTF-8' standalone="no"/>
|
|
|
|
<xsl:template match="node()|@*">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="node()|@*"/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
<xsl:template match="@*[starts-with(name(), 'inkscape:export')]"/>
|
|
|
|
</xsl:stylesheet>
|