output for HTML and FO. (It's not necessary for those, though it is
still needed in manpages output because we're using the .TP macro,
and first line following that is treated differently than the
subsequent lines. So we need to get rid of any embedded line
breaks from within the Term source.)
</xsl:template>
<xsl:template match="varlistentry/term">
- <xsl:variable name="content">
- <xsl:apply-templates/>
- </xsl:variable>
- <fo:inline><xsl:value-of select="normalize-space($content)"/></fo:inline>
+ <fo:inline><xsl:apply-templates/></fo:inline>
<xsl:choose>
<xsl:when test="position() = last()"/> <!-- do nothing -->
<xsl:otherwise>
<xsl:template match="varlistentry/term">
<span class="term">
<xsl:call-template name="anchor"/>
- <xsl:variable name="content">
- <xsl:apply-templates/>
- </xsl:variable>
- <xsl:value-of select="normalize-space($content)"/>
+ <xsl:apply-templates/>
<xsl:choose>
<xsl:when test="position() = last()"/> <!-- do nothing -->
<xsl:otherwise>