dots to be output just as "\." -- instead needs to be "\&." (which
is what it will be now, after this change)
<xsl:call-template name="string.subst">
<xsl:with-param name="string" select="$content"/>
<xsl:with-param name="target">.</xsl:with-param>
- <xsl:with-param name="replacement">\.</xsl:with-param>
+ <xsl:with-param name="replacement">\&.</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:variable name="dot-content">
<xsl:call-template name="string.subst">
<xsl:with-param name="string" select="$content"/>
- <xsl:with-param name="target" select="'\.'"/>
+ <xsl:with-param name="target" select="'\&.'"/>
<xsl:with-param name="replacement" select="'.'"/>
</xsl:call-template>
</xsl:variable>