xsl-list
[Top] [All Lists]

Re: [xsl] how search end of line in XSL

2006-12-08 00:27:39
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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--