- properly indent Examples section in pod generator
This commit is contained in:
parent
48dcc16548
commit
af9e533a54
@ -69,8 +69,13 @@ sub pod_for_usage {
|
|||||||
|
|
||||||
# prepare example if one exists
|
# prepare example if one exists
|
||||||
my $example = (defined $usage->{example})
|
my $example = (defined $usage->{example})
|
||||||
? "Example:\n\n$usage->{example}\n\n"
|
? $usage->{example}
|
||||||
: "";
|
: "";
|
||||||
|
$example =
|
||||||
|
"Example:\n\n" .
|
||||||
|
join ("\n",
|
||||||
|
map { " $_" }
|
||||||
|
split("\n", $example)) . "\n\n";
|
||||||
|
|
||||||
return
|
return
|
||||||
"=item I<$name>".
|
"=item I<$name>".
|
||||||
@ -222,4 +227,4 @@ John BEPPU <beppu@lineo.com>
|
|||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
# $Id: autodocifier.pl,v 1.15 2001/03/15 18:14:25 andersen Exp $
|
# $Id: autodocifier.pl,v 1.16 2001/03/15 20:49:25 beppu Exp $
|
||||||
|
Loading…
x
Reference in New Issue
Block a user