From cf96251f13adc96d44a8d8c392b7a7072d1befff Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 6 Jun 2020 19:44:52 +0200 Subject: [PATCH] whitespace cleanup Signed-off-by: Thomas Lamprecht --- asciidoc-pve.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/asciidoc-pve.in b/asciidoc-pve.in index bbaf597..ff97314 100644 --- a/asciidoc-pve.in +++ b/asciidoc-pve.in @@ -582,11 +582,11 @@ if ($clicmd eq 'compile-wiki') { print "var pveOnlineHelpInfo = ${data_str};\n"; } elsif ($clicmd eq 'chapter-table') { - + print '[width="100%",options="header"]' . "\n"; print "|====\n"; print "|Title|Link\n"; - + my $filelist = $fileinfo->{outfile}->{default}; foreach my $sourcefile (sort keys %$filelist) { my $target = $filelist->{$sourcefile}; @@ -595,16 +595,16 @@ if ($clicmd eq 'compile-wiki') { die "not title for '$sourcefile'"; print "|$title|link:$target\[\]\n"; } - + print "|====\n"; } elsif ($clicmd =~ m/^man([158])page-table$/) { - + my $section = $1; print '[width="100%",cols="5*d",options="header"]' . "\n"; print "|====\n"; print "|Name 3+|Title|Link\n"; - + my $filelist = $fileinfo->{outfile}->{manvolnum}; foreach my $manpage (sort keys %$filelist) { next if $section ne $fileinfo->{mansection}->{manvolnum}->{$manpage}; @@ -618,8 +618,8 @@ if ($clicmd eq 'compile-wiki') { my $target = $filelist->{$manpage}; print "|$mantitle 3+|$title|link:$target.html\[$target\]\n"; - } - + } + print "|====\n"; } else {