This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: xsl to Html help please


If you want two separate paragraphs the easiest way is two break it into two 
text sections and add the <p> tags in your xslt stylesheet.

See examples below:

<text>hello how are u and looking take care of ur self and be a good
boy son.</text>
<text>And talking about ur studies study well and get a nice job and settle 
down soon </text>

________________________________________________________________________

<xsl:template match="text">
<p>
<xsl:apply-templates/>
</p>
</xst:template>

Hope this helps,

Pam


>From: "Java XML" <jaxlive@hotmail.com>
>Reply-To: xsl-list@lists.mulberrytech.com
>To: XSL-List@lists.mulberrytech.com
>Subject: [xsl] xsl to Html help please
>Date: Wed, 28 Mar 2001 12:23:56 -0500
>
>Hi folks,
>          I have a typical problem i have an xml like this
>
><text>hello how are u and looking take care of ur self and be a good boy
>son.
>           And talking about ur studies study well and get a nice job and
>settle down soon </text>
>
>but when i generate an html file using xslt i get it this way
>
>"hello how are u and looking take care of ur self and be a good boy son.And
>talking about ur studies study well and get a nice job and settle down 
>soon"
>
>i want to restore the paragraph structure also but i dont know a way to do
>it i want to insert a <P> where the paragraph starts and a </p> where
>another paragraph starts or is there any other way to restore the paragraph
>structure any help is appriciated.
>
>Thanx
>JaxLive
>_________________________________________________________________
>Get your FREE download of MSN Explorer at http://explorer.msn.com
>
>
>XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]