]> granicus.if.org Git - docbook-dsssl/commitdiff
Changed dot output to mark end of tbl(1) table format sections
authorMichael Smith <xmldoc@users.sourceforge.net>
Mon, 15 Jan 2007 01:41:59 +0000 (01:41 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Mon, 15 Jan 2007 01:41:59 +0000 (01:41 +0000)
(changed from real dot to internal U+2302 representation).

xsl/manpages/lists.xsl
xsl/manpages/table.xsl

index de988c24903d00235ef57d55d74fc8342fc91bb1..2a00b3ad3ac5c2e7e37118c15f21fa87933d8b63 100644 (file)
     <!-- * output of all segmentedlist content -->
     <xsl:text>l</xsl:text>
   </xsl:for-each>
-  <xsl:text>.&#10;</xsl:text>
+  <!-- * last line of table format section must end with a dot -->
+  <xsl:text>&#x2302;&#10;</xsl:text>
   <!-- * optionally suppress output of segtitle -->
   <xsl:choose>
     <xsl:when test="$man.segtitle.suppress != 0">
index 565962a67d5c95da81d31f097201ea9de65fa8b0..3405bc6b723668ec5c43e912296ab960df57e9eb 100644 (file)
     <xsl:param name="cells"/>
     <xsl:apply-templates mode="table.format" select="$cells"/>
     <!-- * last line of table format section must end with a dot -->
-    <xsl:text>.</xsl:text>
+    <!-- * we use U+2302 internally to mark dots, and replace them -->
+    <!-- * with real dots before serializing to output -->
+    <xsl:text>&#x2302;</xsl:text>
   </xsl:template>
 
   <xsl:template match="cell" mode="table.format">