Re: [xsl] Moving (promoting) XML elements through XSL

Subject: Re: [xsl] Moving (promoting) XML elements through XSL
From: "Mark Peters" <flickrmeister@xxxxxxxxx>
Date: Fri, 30 Jun 2006 11:28:08 -0400
Woo hoo! Many thanks, David. That's exactly what I needed.

Mark


On 6/30/06, David Carlisle <davidc@xxxxxxxxx> wrote:

> But of course, my nested topic > elements don't appear in the output.

well instead of
select="body" you want to select everything that isn't title, so that
would be

select="*[not(self::title)]"
or if using xslt2
select="* except title"

The question then is what you want to do with nested topics. If they
need the smame re-arranging process then you want your main template to
match match="topic" so that they all get transformed. If nested topics
just want copying then your main template wants match="/topic" so that
it only matches the top level element.


David





--

Mark Peters
Senior Technical Writer
Saba Software

Current Thread