Code

Documentation: use "spurious .sp" XSLT if DOCBOOK_SUPPRESS_SP is set
[git.git] / Documentation / manpage-base.xsl
index 16e2e4097638a49a758c9c198106005822f679e2..a264fa616093cf4e28a1080dd76747b008859e19 100644 (file)
        <xsl:text>br&#10;</xsl:text>
 </xsl:template>
 
-<!-- attempt to work around spurious .sp at the tail of the line
-     that docbook stylesheets seem to add -->
-<xsl:template match="simpara">
-  <xsl:variable name="content">
-    <xsl:apply-templates/>
-  </xsl:variable>
-  <xsl:value-of select="normalize-space($content)"/>
-  <xsl:if test="not(ancestor::authorblurb) and
-                not(ancestor::personblurb)">
-    <xsl:text>&#10;&#10;</xsl:text>
-  </xsl:if>
-</xsl:template>
-
 </xsl:stylesheet>