It has to be just "\fR", "\fB", ".sp" and ".br", not weird unicode stuff. Signed-off-by: Alexey I. Froloff <raorn@xxxxxxxxxxxx> --- Documentation/manpage-1.72.xsl | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/manpage-1.72.xsl b/Documentation/manpage-1.72.xsl index 4065a3a..2f4b6cb 100644 --- a/Documentation/manpage-1.72.xsl +++ b/Documentation/manpage-1.72.xsl @@ -5,17 +5,17 @@ <xsl:param name="refentry.meta.get.quietly" select="1"/> <xsl:template match="co"> - <xsl:value-of select="concat('▓fB(',substring-after(@id,'-'),')▓fR')"/> + <xsl:value-of select="concat('\\fB(',substring-after(@id,'-'),')\\fR')"/> </xsl:template> <xsl:template match="calloutlist"> - <xsl:text>⌂sp </xsl:text> + <xsl:text>.sp </xsl:text> <xsl:apply-templates/> <xsl:text> </xsl:text> </xsl:template> <xsl:template match="callout"> - <xsl:value-of select="concat('▓fB',substring-after(@arearefs,'-'),'. ▓fR')"/> + <xsl:value-of select="concat('\\fB',substring-after(@arearefs,'-'),'. \\fR')"/> <xsl:apply-templates/> - <xsl:text>⌂br </xsl:text> + <xsl:text>.br </xsl:text> </xsl:template> </xsl:stylesheet> -- 1.6.2.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html