svg_passer.xslt (283B)
1 <transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"> 2 <template match="node()|@*"> 3 <copy> 4 <apply-templates select="@*"/> 5 <apply-templates/> 6 </copy> 7 </template> 8 <template match="@fill"> 9 <attribute name="fill">lime</attribute> 10 </template> 11 </transform>