]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/goodstuff.pm
Merge commit 'smcv/comments'
[ikiwiki.git] / IkiWiki / Plugin / goodstuff.pm
index df928f2226d485aba2a582363e59da44db9d229c..92bc8200a3e2dd7d982af6479782a3827ed863d5 100644 (file)
@@ -10,30 +10,33 @@ my @bundle=qw{
        brokenlinks
        img
        map
-       meta
+       more
        orphans
        pagecount
        pagestats
+       progress
        shortcut
        smiley
        tag
+       table
        template
        toc
        toggle
-       otl
 };
 
-sub import { #{{{
+sub import {
        hook(type => "getsetup", id => "goodstuff", call => \&getsetup);
-       IkiWiki::loadplugin($_) foreach @bundle;
-} # }}}
+       foreach my $plugin (@bundle) {
+               IkiWiki::loadplugin($plugin);
+       }
+}
 
-sub getsetup { #{{{
+sub getsetup {
        return 
                plugin => {
                        safe => 1,
                        rebuild => undef,
                },
-} #}}}
+}
 
 1