R
rbrunn
Hi all,
I'm trying to write a XSL-transformation which converts AI-exported
SVG-Files to be more compatible with firefox. Namely I want to extract
gradients which are declared inside of symbol tags to a higher level.
(https://bugzilla.mozilla.org/show_bug.cgi?id=353575)
i.e.
....
<svg...>
....
<symbol>
...
<...>
...
<linearGradient...>
...
</linearGradient>
...
</...>
...
</symbol>
....
</svg>
....
shall be converted to:
....
<svg...>
....
<linearGradient...>
...
</linearGradient>
<symbol>
...
<...>
...
</...>
...
</symbol>
....
</svg>
....
Is this possible? Even if the descendant I want to extract is no direct
child of symbol?
Thanks,
Ronnie
I'm trying to write a XSL-transformation which converts AI-exported
SVG-Files to be more compatible with firefox. Namely I want to extract
gradients which are declared inside of symbol tags to a higher level.
(https://bugzilla.mozilla.org/show_bug.cgi?id=353575)
i.e.
....
<svg...>
....
<symbol>
...
<...>
...
<linearGradient...>
...
</linearGradient>
...
</...>
...
</symbol>
....
</svg>
....
shall be converted to:
....
<svg...>
....
<linearGradient...>
...
</linearGradient>
<symbol>
...
<...>
...
</...>
...
</symbol>
....
</svg>
....
Is this possible? Even if the descendant I want to extract is no direct
child of symbol?
Thanks,
Ronnie