<div class="{name(.)}">
<p>
<xsl:call-template name="number.rtf.lines">
- <xsl:with-param name="rtf" select="$rtf"/>
+ <xsl:with-param name="rtf">
+ <xsl:call-template name="make-verbatim">
+ <xsl:with-param name="text" select="translate($rtf,' ',' ')"/>
+ </xsl:call-template>
+ </xsl:with-param>
</xsl:call-template>
</p>
</div>
<xsl:otherwise>
<div class="{name(.)}">
<p>
- <xsl:copy-of select="$rtf"/>
+ <xsl:call-template name="make-verbatim">
+ <xsl:with-param name="text" select="translate($rtf,' ',' ')"/>
+ </xsl:call-template>
</p>
</div>
</xsl:otherwise>