2 <xsl:stylesheet xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform"
5 <!-- ********************************************************************
6 $Id: htmltbl.xsl,v 1.1 2007/03/10 05:15:13 scott Exp $
7 ********************************************************************
9 This file is part of the XSL DocBook Stylesheet distribution.
10 See ../README or http://nwalsh.com/docbook/xsl/ for copyright
11 and other information.
13 ******************************************************************** -->
15 <!-- ==================================================================== -->
17 <xsl:template match=
"colgroup" mode=
"htmlTable">
19 <xsl:copy-of select=
"@*"/>
20 <xsl:apply-templates mode=
"htmlTable"/>
24 <xsl:template match=
"col" mode=
"htmlTable">
26 <xsl:copy-of select=
"@*"/>
30 <xsl:template match=
"caption" mode=
"htmlTable">
32 <xsl:copy-of select=
"@*"/>
34 <xsl:apply-templates select=
".." mode=
"object.title.markup">
35 <xsl:with-param name=
"allow-anchors" select=
"1"/>
36 </xsl:apply-templates>
41 <xsl:template match=
"thead|tbody|tgroup|tr" mode=
"htmlTable">
43 <xsl:copy-of select=
"@*"/>
44 <xsl:apply-templates mode=
"htmlTable"/>
48 <xsl:template match=
"th|td" mode=
"htmlTable">
50 <xsl:copy-of select=
"@*"/>
51 <xsl:apply-templates/> <!-- *not* mode=htmlTable -->