git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fixed man entities.
@ 2009-05-05 21:51 Alexey I. Froloff
  2009-05-06  0:11 ` Chris Johnsen
  0 siblings, 1 reply; 3+ messages in thread
From: Alexey I. Froloff @ 2009-05-05 21:51 UTC (permalink / raw)
  To: git; +Cc: Dmitry V. Levin, Alexey I. Froloff

It has to be just "\fR", "\fB", ".sp" and ".br", not weird unicode
stuff.

Signed-off-by: Alexey I. Froloff <raorn@altlinux.org>
---
 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('&#x2593;fB(',substring-after(@id,'-'),')&#x2593;fR')"/>
+	<xsl:value-of select="concat('\\fB(',substring-after(@id,'-'),')\\fR')"/>
 </xsl:template>
 <xsl:template match="calloutlist">
-	<xsl:text>&#x2302;sp&#10;</xsl:text>
+	<xsl:text>.sp&#10;</xsl:text>
 	<xsl:apply-templates/>
 	<xsl:text>&#10;</xsl:text>
 </xsl:template>
 <xsl:template match="callout">
-	<xsl:value-of select="concat('&#x2593;fB',substring-after(@arearefs,'-'),'. &#x2593;fR')"/>
+	<xsl:value-of select="concat('\\fB',substring-after(@arearefs,'-'),'. \\fR')"/>
 	<xsl:apply-templates/>
-	<xsl:text>&#x2302;br&#10;</xsl:text>
+	<xsl:text>.br&#10;</xsl:text>
 </xsl:template>
 
 </xsl:stylesheet>
-- 
1.6.2.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-05-06  0:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-05 21:51 [PATCH] Fixed man entities Alexey I. Froloff
2009-05-06  0:11 ` Chris Johnsen
2009-05-06  0:37   ` Alexey I. Froloff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).