X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/168e428fc4dfcf7f4d377d137743d8332784fa35..bd8aa2d172edfb841402caf8c2524628505df8ea:/doc/doc-docbook/x2man diff --git a/doc/doc-docbook/x2man b/doc/doc-docbook/x2man index a9812239e..9765ded0d 100755 --- a/doc/doc-docbook/x2man +++ b/doc/doc-docbook/x2man @@ -1,6 +1,6 @@ #! /usr/bin/perl -w -# $Cambridge: exim/doc/doc-docbook/x2man,v 1.1 2005/06/16 10:32:31 ph10 Exp $ +# $Cambridge: exim/doc/doc-docbook/x2man,v 1.2 2006/02/01 11:01:02 ph10 Exp $ # Script to find the command line options in the DocBook source of the Exim # spec, and turn them into a man page, because people like that. @@ -96,11 +96,11 @@ while ($next) # Start of new option - if (/^$/) + if (/^(-.*?)<\/term>$/) { print OUT ".TP 10\n"; + $_ = "$1\n"; $optstart = 1; - next; } # If a line contains text that is not in <>, read subsequent lines of the @@ -192,11 +192,9 @@ while ($next) s/<//g; - s/-/-/g; - s/ / /g; - s/–/-/g; + s/ / /g; + s/–/-/g; s/’/'/g; - s/…/.../g; # Sic - no x # Escape hyphens to prevent unwanted hyphenation