xsl-list
[Top] [All Lists]

RE: XSL nested tag help

2002-10-05 09:26:49
I've following XML file.
<Main>
  This is a first test message
  <Target> and </Target>
  it is important
</Main> 
 

From the above XML file I'd like to write and XSL so that I'll get 
following output
<h1>This is a first test message<h1> <h2> and </h2> <h1>it is 
important 
</h1>


<xsl:template match="Main/text()">
  <h1><xsl:value-of select="."/></h1>
</xsl:template>

<xsl:template match="Target">
  <h2><xsl:value-of select="."/></h2>
</xsl:template>

But before you do that, try to choose a better design for your XML.
Using mixed content (text and elements as siblings of each other)
probably isn't the best approach here.

Michael Kay
Software AG
home: Michael(_dot_)H(_dot_)Kay(_at_)ntlworld(_dot_)com
work: Michael(_dot_)Kay(_at_)softwareag(_dot_)com 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>