]> granicus.if.org Git - docbook-dsssl/commitdiff
Make tfoot come out before tbody; even in HTML it's supposed to be that way
authorNorman Walsh <ndw@nwalsh.com>
Wed, 13 Mar 2002 11:40:17 +0000 (11:40 +0000)
committerNorman Walsh <ndw@nwalsh.com>
Wed, 13 Mar 2002 11:40:17 +0000 (11:40 +0000)
xsl/html/table.xsl

index ccd4fd19f09720057ddd50bdf78322fef284558f..4e4d20ac06f6f48705db943016760d836921e46f 100644 (file)
     </xsl:choose>
 
     <xsl:apply-templates select="thead"/>
-    <xsl:apply-templates select="tbody"/>
     <xsl:apply-templates select="tfoot"/>
+    <xsl:apply-templates select="tbody"/>
 
     <xsl:if test=".//footnote">
       <tbody class="footnotes">
         <tr>
           <td colspan="{@cols}">
-            <xsl:apply-templates select=".//footnote" 
-                                 mode="table.footnote.mode"/>
+            <xsl:apply-templates select=".//footnote" mode="table.footnote.mode"/>
           </td>
         </tr>
       </tbody>