]> scripts.mit.edu Git - www/ikiwiki.git/blobdiff - IkiWiki/Plugin/pagecount.pm
Coding style change: Remove explcit vim folding markers.
[www/ikiwiki.git] / IkiWiki / Plugin / pagecount.pm
index e059fa61850c531083a7cfb743597ea2691f3be2..c08ab3931df261de093a558002712a4ccc5db685 100644 (file)
@@ -5,20 +5,20 @@ use warnings;
 use strict;
 use IkiWiki 2.00;
 
-sub import { #{{{
+sub import {
        hook(type => "getsetup", id => "pagecount", call => \&getsetup);
        hook(type => "preprocess", id => "pagecount", call => \&preprocess);
-} # }}}
+}
 
-sub getsetup () { #{{{
+sub getsetup () {
        return 
                plugin => {
                        safe => 1,
                        rebuild => undef,
                },
-} #}}}
+}
 
-sub preprocess (@) { #{{{
+sub preprocess (@) {
        my %params=@_;
        $params{pages}="*" unless defined $params{pages};
        
@@ -33,6 +33,6 @@ sub preprocess (@) { #{{{
                $count++ if pagespec_match($page, $params{pages}, location => $params{page});
        }
        return $count;
-} # }}}
+}
 
 1