[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Problem while inserting new lines

Subject: Re: Problem while inserting new lines
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Mon, 11 Jun 2001 04:18:55 -0700 (PDT)
inserting br xml
Seema Kumar wrote:

> I have included the <br / tag within my xml tags to indicate a new line.
> 
>  I am handling it in my xsl as follows :
> 
>  <xsl:template match="text"
>      <xsl:value-of select ="."/
>      <xsl:apply-templates /
>  </xsl:template
> 
>  <xsl:template match="br"
>   <br/
>  </xsl:template
> 
>  The problem is that all the br tags are matched at the end and they appear
>  as a cluster at the end of the text para.
 
Hi Seema,

Try to avoid using element names that are also keywords in XSLT/XPath.

In your case, you most probably wanted to match text nodes -- text() -- and not
elements named "text".

Here's the template that does what you wanted -- after the correction:

xml source:
----------
<xml>
 <text>
 This is a sample . <br/>
 For testing
 </text>
</xml>

Stylesheet:
----------
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output omit-xml-declaration="yes" />

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

    <xsl:template match="br">
        <br />
    </xsl:template>
</xsl:stylesheet>

Result:
------

 This is a sample . <br />
 For testing
 

If you really wanted to match "text" element nodes, then you should use 
<xsl:copy-of select="node()"/> instead of xsl:value-of. Then the template matching
"br" becomes unnecessary and will best be removed.

Cheers,
Dimitre Novatchev

 

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.