[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[xsl] move tag up to level
Subject: [xsl] move tag up to level
From: "alex v." <alex.vett@xxxxxxxxx>
Date: Thu, 28 Sep 2006 17:05:01 +0200
|
Hi,
I have to transform a structure like this:
<root>
<a>mixed content like text and tags
<b>other mixed content</b>
mixed content also here
</a></root>
in another like:
<root>
<a>mixed content like text and tags</a>
<b>other mixed content</b>
<a>mixed content also here</a>
</root>
Tag 'a' is closed before '<b>' and then reopen follow '</b>'.
Also tag 'b' is promote at level of tag 'a'.
Can someone tell me how to do this?
Thanks,
~alex
|