From e708cb5f9a74d8243ba3a223395466951255badc Mon Sep 17 00:00:00 2001 From: John Beppu Date: Thu, 15 Mar 2001 21:08:01 +0000 Subject: - generated middle section of busybox.pod w/ autodocifier.pl - updated autodocifier.pl to use tab to indent example section --- docs/autodocifier.pl | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'docs/autodocifier.pl') diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl index 7c3aa50bc..567b10310 100755 --- a/docs/autodocifier.pl +++ b/docs/autodocifier.pl @@ -69,13 +69,12 @@ sub pod_for_usage { # prepare example if one exists my $example = (defined $usage->{example}) - ? $usage->{example} + ? + "Example:\n\n" . + join ("\n", + map { "\t$_" } + split("\n", $usage->{example})) . "\n\n" : ""; - $example = - "Example:\n\n" . - join ("\n", - map { " $_" } - split("\n", $example)) . "\n\n"; return "=item I<$name>". @@ -227,4 +226,4 @@ John BEPPU =cut -# $Id: autodocifier.pl,v 1.16 2001/03/15 20:49:25 beppu Exp $ +# $Id: autodocifier.pl,v 1.17 2001/03/15 21:08:01 beppu Exp $ -- cgit v1.2.3-55-g6feb