[xsl] Copy element but transform sub-element

Subject: [xsl] Copy element but transform sub-element
From: Maximilian Gärber <max@xxxxxxxxxx>
Date: Thu, 08 Sep 2005 15:36:58 +0200
Hi,

I don't know how to handle such a scenario:

given following xml:

<product>
 <name></name>
 <article>
     <priceInfo>
        ...price data with further sub elements .....
     </priceInfo>
 </article>
</product>

I need to only apply a template to the article element (and sub-elements)
the (rather complex) product element can be copied as is:

<product>
 <name></name>
 <CHANGED ARTICLE>
      <SOME TABULAR-STYLED XML/>
  </CHANGED ARTICLE>
</product>

Any suggestions?

Current Thread