]> granicus.if.org Git - docbook-dsssl/commitdiff
Set start-indent=0 on table-body, table-header, table-footer so table cells
authorBob Stayton <bobs@sagehill.net>
Mon, 10 Jan 2005 08:32:20 +0000 (08:32 +0000)
committerBob Stayton <bobs@sagehill.net>
Mon, 10 Jan 2005 08:32:20 +0000 (08:32 +0000)
do not inherit start-indent.

xsl/fo/table.xsl

index 68387ef178d50474ae2aa378696c22ca92901381..bb75acc56b2cf5f03bbc56035c5f81d58a60f151 100644 (file)
@@ -264,7 +264,7 @@ to be incomplete. Don't forget to read the source, too :-)</para>
 <xsl:template match="thead">
   <xsl:variable name="tgroup" select="parent::*"/>
 
-  <fo:table-header>
+  <fo:table-header start-indent="0pt">
     <xsl:apply-templates select="row[1]">
       <xsl:with-param name="spans">
         <xsl:call-template name="blank.spans">
@@ -278,7 +278,7 @@ to be incomplete. Don't forget to read the source, too :-)</para>
 <xsl:template match="tfoot">
   <xsl:variable name="tgroup" select="parent::*"/>
 
-  <fo:table-footer>
+  <fo:table-footer start-indent="0pt">
     <xsl:apply-templates select="row[1]">
       <xsl:with-param name="spans">
         <xsl:call-template name="blank.spans">
@@ -293,7 +293,7 @@ to be incomplete. Don't forget to read the source, too :-)</para>
 <xsl:template match="tbody">
   <xsl:variable name="tgroup" select="parent::*"/>
 
-  <fo:table-body>
+  <fo:table-body start-indent="0pt">
     <xsl:apply-templates select="row[1]">
       <xsl:with-param name="spans">
         <xsl:call-template name="blank.spans">