X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/04a9dbfe7daa9c352ae4e9af17df8134248f3806..40978343575b1cba041c087518e5766d6ca5db82:/IkiWiki/Plugin/goodstuff.pm diff --git a/IkiWiki/Plugin/goodstuff.pm b/IkiWiki/Plugin/goodstuff.pm index 384123f60..ed1f4ddfc 100644 --- a/IkiWiki/Plugin/goodstuff.pm +++ b/IkiWiki/Plugin/goodstuff.pm @@ -4,27 +4,40 @@ package IkiWiki::Plugin::goodstuff; use warnings; use strict; -use IkiWiki; +use IkiWiki 2.00; 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