Subject:SVG, XML & XSLT Author:joe j Date:18 Mar 2005 09:55 PM
Hello,
I am trying to do an xslt to transform svg d attribute to xml? How can I do that?
Another question is; how can I transform an xml to another xml but what if
I dont know what tags are in. The only thing I know is that a parent tag called
<path> and a sub <d> should exist?
Subject:SVG, XML & XSLT Author:(Deleted User) Date:24 Mar 2005 03:05 PM
Hi Joe,
>I am trying to do an xslt to transform svg d attribute to
>xml? How can I do that?
I guess this has already been covered by another thread on this forum
>Another question is; how can I transform an xml to another
>xml but what if I dont know what tags are in.
>The only thing I know is that a parent tag called
><path> and a sub <d> should exist?
You should create a template with a match attribute of "path/d"; it
will be executed whenever this pattern is found in the XML, regardless
of the position.