Subject: Re: Calcuting TH rows
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 9 Jan 2009 23:24:38 GMT
|
> I need the <thead> to close AFTER the
> last <tr> (row) that contains <th> elements.
don't think of opening and closing tags, think of elements containing or
not containingg stuff.
reword the requirement to:
I need the thead element to contain the result of processing rows that
have a th, and the remaining rows to be processed in tbody (or nothing,
I can't remeber quite how these tables worked).
Once phrased that way, the translation to xslt is immediate:
<thead>
<xsl:apply-templates select="tr[th]"/>
</thead>
<tbody>
<xsl:apply-templates select="tr[not(th)]"/>
</tbody>
no xsl:if testing is required here, I think.
David
________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________
|