[EMAIL PROTECTED] wrote:
Author: crossley
Date: Sat Mar  1 17:48:09 2008
New Revision: 632692

URL: http://svn.apache.org/viewvc?rev=632692&view=rev
Log:
Only add table headers when present in source. Can someone do better xsl?

+      <xsl:if test="tr[count(th) &gt; 0]">

<xsl:if test="tr/th">

tests for a th as a child of tr

Ross