Insert an empty <simpara> in manpages after code blocks to force and empty line. The problem can be seen on the manpage for the git tutorial, where an example command and the following paragraph is printed with no empty line between them: First, note that you can get documentation for a command such as git log --graph with: $ man git-log It is a good idea to introduce yourself to git [...] Signed-off-by: Jonas Fonseca <fonseca@xxxxxxx> --- Documentation/asciidoc.conf | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) Teemu Likonen <tlikonen@xxxxxx> wrote Thu, Oct 30, 2008: > In case someone is interested there is still a minor flaw that an > example command and the following paragraph is printed with no empty > line between them. Like in the beginning of "git help tutorial", for > example: > > First, note that you can get documentation for a command such as git > log --graph with: > > $ man git-log > It is a good idea to introduce yourself to git [...] > > It would be nicer if there was empty line after "$ man git-log". I can't > remember if this is new issue or not. This applies only to man pages; in > html pages there are nice boxes around example commands and equal > spacing before and after them. This is an old issue reported by Theodore Ts'o and fixed partially in commit 63c97ce228f2d2697a8ed954a9592dfb5f286338 for the URL section of the fetch/pull/push manpages. I have fixed this in tig using an approach similar to the attached. Simple and clean, but only tested with docbook-xsl version 1.72 so I have made it conditional. diff --git a/Documentation/asciidoc.conf b/Documentation/asciidoc.conf index 40d43b7..2da867d 100644 --- a/Documentation/asciidoc.conf +++ b/Documentation/asciidoc.conf @@ -40,6 +40,26 @@ endif::doctype-manpage[] </literallayout> {title#}</example> endif::docbook-xsl-172[] + +ifdef::docbook-xsl-172[] +ifdef::doctype-manpage[] +# The following two small workarounds insert a simple paragraph after screen +[listingblock] +<example><title>{title}</title> +<screen> +| +</screen><simpara></simpara> +{title#}</example> + +[verseblock] +<formalpara{id? id="{id}"}><title>{title}</title><para> +{title%}<literallayout{id? id="{id}"}> +{title#}<literallayout> +| +</literallayout><simpara></simpara> +{title#}</para></formalpara> +endif::doctype-manpage[] +endif::docbook-xsl-172[] endif::backend-docbook[] ifdef::doctype-manpage[] -- 1.6.0.3.756.gb776d.dirty -- Jonas Fonseca -- 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