3 <xsl:stylesheet version=
"1.0"
4 xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform"
5 xmlns:
svg=
"http://www.w3.org/2000/svg">
7 <!-- copy all elements and all attributes -->
8 <xsl:template match=
"@*|node()">
10 <xsl:apply-templates select=
"@*|node()"/>
14 <!-- .. but add "shape-rendering:optimizeSpeed" to these elements
16 <xsl:template match=
"svg:path/@style">
17 <xsl:attribute name=
"style">
18 <xsl:text>shape-rendering:optimizeSpeed;
</xsl:text>
19 <xsl:value-of select=
"."/>