Subject: Re: how search end of line in XSL
From: Bkesh <bkesh@xxxxxxxxxxxxxxx>
Date: Fri, 08 Dec 2006 13:03:52 +0530
|
Thanks Georges. But I am missing all bold, italic and supterscript tags.
Ex...
<literallayout>
This is <b>text</b> 1.
This is text<sup>2</sup>.
</literallayout>
after transformation
<para>This is text 1.</para>
<para>This is text2.</par>
Thanks
Byomkesh
Bkesh wrote:
Hi
> How search end of line and convert <para> tag.
<xsl:for-each select="tokenize(., '&_#10;')">
<para>
<xsl:value-of select="."/>
</para>
</xsl:for-each>
Regards,
--drkm
|