Jitterbug no more.
[fvwm.git] / doc / docbook-xsl / html / htmltbl.xsl
blob3c35269fbd7dc2ee213327a5cb8856ab2f763ee1
1 <?xml version="1.0"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 version="1.0">
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">
18 <xsl:copy>
19 <xsl:copy-of select="@*"/>
20 <xsl:apply-templates mode="htmlTable"/>
21 </xsl:copy>
22 </xsl:template>
24 <xsl:template match="col" mode="htmlTable">
25 <xsl:copy>
26 <xsl:copy-of select="@*"/>
27 </xsl:copy>
28 </xsl:template>
30 <xsl:template match="caption" mode="htmlTable">
31 <xsl:copy>
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>
38 </xsl:copy>
39 </xsl:template>
41 <xsl:template match="thead|tbody|tgroup|tr" mode="htmlTable">
42 <xsl:copy>
43 <xsl:copy-of select="@*"/>
44 <xsl:apply-templates mode="htmlTable"/>
45 </xsl:copy>
46 </xsl:template>
48 <xsl:template match="th|td" mode="htmlTable">
49 <xsl:copy>
50 <xsl:copy-of select="@*"/>
51 <xsl:apply-templates/> <!-- *not* mode=htmlTable -->
52 </xsl:copy>
53 </xsl:template>
55 </xsl:stylesheet>