Hi,
Unfortunately removing escape.apostrophe will not work. The character
gets escaped, because the single quotation mark (apostrophe) has a
special meaning. At the beginning of a line, it marks a macro. Simply
removing the escape.apostrophe template will cause issues with GROFF
("'foo' not defined", missing lines, ...).
I think, it is safe to replace it with its GROFF code pendant `\[aq]'.
Will discuss this with upstream. As long as this is not yet done, you
can fix it in your customization layer:
> <xsl:template name="escape.apostrophe">
> <xsl:param name="content"/>
> <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">\[aq]</xsl:with-param>
> </xsl:call-template>
> </xsl:template>
Is it important (for you) to get this fixed for Lenny?
Regards, Daniel
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]