Re: [xsl] Preceding sibling selction

Subject: Re: [xsl] Preceding sibling selction
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Tue, 03 Mar 2009 19:45:12 +0100
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/

Current Thread