]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/goodstuff.pm
comments: Save comments as a file with one big [[!comment]] directive.
[ikiwiki.git] / IkiWiki / Plugin / goodstuff.pm
index 08ed960b4a3ff8bc7d10419e765a7bd3b4fbc8f0..a18e626d4c94b037d8a05c3c971ab9600f0f6e95 100644 (file)
@@ -10,7 +10,6 @@ my @bundle=qw{
        brokenlinks
        img
        map
-       meta
        more
        orphans
        pagecount
@@ -27,7 +26,9 @@ my @bundle=qw{
 
 sub import { #{{{
        hook(type => "getsetup", id => "goodstuff", call => \&getsetup);
-       IkiWiki::loadplugin($_) foreach @bundle;
+       foreach my $plugin (@bundle) {
+               IkiWiki::loadplugin($plugin);
+       }
 } # }}}
 
 sub getsetup { #{{{