xsl-list
[Top] [All Lists]

Re: [xsl] Preceding sibling selction

2009-03-03 13:46:11
Senthilukvelaan wrote:

I have tried the same using the below style sheet.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">
        <xsl:template match="/">
                <html>
                        <body>
                                <table>
                <xsl:call-template name="text"></xsl:call-template>
                <xsl:call-template name="html"></xsl:call-template>
                                </table>

Why the table element, where the rest of the stylesheet does not create any tbody or tr elements?
And why the xsl:call-template? Simply use
   <xsl:apply-templates/>
or perhaps
   <xsl:apply-templates select="BODY/Parts/MIME/BODY"/>


--

        Martin Honnen
        http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
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>
--~--

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