Still insert a ".ft C" before and ".ft" after, but do it in a way as to avoid them to get escaped with "\&", which makes the manpages look pretty bad. Do it in a more docbook-xsl'ish way. Reverts 281a53bb79786a6d7e54f9715cc8ad46fc2bdb0e. Signed-off-by: Mike Hommey <mh@xxxxxxxxxxxx> --- Documentation/asciidoc.conf | 6 ------ Documentation/callouts.xsl | 7 +++++++ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Documentation/asciidoc.conf b/Documentation/asciidoc.conf index af5b155..6b6220d 100644 --- a/Documentation/asciidoc.conf +++ b/Documentation/asciidoc.conf @@ -27,13 +27,7 @@ ifdef::backend-docbook[] [listingblock] <example><title>{title}</title> <literallayout> -ifdef::doctype-manpage[] - .ft C -endif::doctype-manpage[] | -ifdef::doctype-manpage[] - .ft -endif::doctype-manpage[] </literallayout> {title#}</example> endif::backend-docbook[] diff --git a/Documentation/callouts.xsl b/Documentation/callouts.xsl index 6a361a2..e188f5e 100644 --- a/Documentation/callouts.xsl +++ b/Documentation/callouts.xsl @@ -27,4 +27,11 @@ </xsl:if> </xsl:template> +<!-- Force listingblocks to be monospaced in manpages --> +<xsl:template match="literallayout"> + <xsl:text>⌂ft C </xsl:text> + <xsl:apply-templates/> + <xsl:text>⌂ft </xsl:text> +</xsl:template> + </xsl:stylesheet> -- 1.5.3.rc4 - 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