Path: blob/master/tools/lib/perf/Documentation/manpage-suppress-sp.xsl
26298 views
<!-- manpage-suppress-sp.xsl:1special settings for manpages rendered from asciidoc+docbook2handles erroneous, inline .sp in manpage output of some3versions of docbook-xsl -->4<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"5version="1.0">67<!-- attempt to work around spurious .sp at the tail of the line8that some versions of docbook stylesheets seem to add -->9<xsl:template match="simpara">10<xsl:variable name="content">11<xsl:apply-templates/>12</xsl:variable>13<xsl:value-of select="normalize-space($content)"/>14<xsl:if test="not(ancestor::authorblurb) and15not(ancestor::personblurb)">16<xsl:text> </xsl:text>17</xsl:if>18</xsl:template>1920</xsl:stylesheet>212223