]> git.proxmox.com Git - pve-docs.git/commitdiff
whitespace cleanup
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 6 Jun 2020 17:44:52 +0000 (19:44 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 6 Jun 2020 17:45:02 +0000 (19:45 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
asciidoc-pve.in

index bbaf5972d87db049444c38fcadb8130ccd57f44c..ff97314f0fd2c992fbc1a676c6638a096d7945b7 100644 (file)
@@ -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 {