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