]> 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 effbc7de9ff14759409ba36bf9b18d8230fe2123..a18e626d4c94b037d8a05c3c971ab9600f0f6e95 100644 (file)
@@ -10,21 +10,33 @@ my @bundle=qw{
        brokenlinks
        img
        map
-       meta
+       more
        orphans
        pagecount
        pagestats
+       progress
        shortcut
        smiley
        tag
+       table
        template
        toc
        toggle
-       otl
 };
 
 sub import { #{{{
-       IkiWiki::loadplugin($_) foreach @bundle;
+       hook(type => "getsetup", id => "goodstuff", call => \&getsetup);
+       foreach my $plugin (@bundle) {
+               IkiWiki::loadplugin($plugin);
+       }
 } # }}}
 
+sub getsetup { #{{{
+       return 
+               plugin => {
+                       safe => 1,
+                       rebuild => undef,
+               },
+} #}}}
+
 1