X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/ee1ad53c4c2710aa7ded61bdc56f3a8cce514f22..805e16ec65c338323333244fb67c59e1d69ba96f:/IkiWiki/Plugin/goodstuff.pm diff --git a/IkiWiki/Plugin/goodstuff.pm b/IkiWiki/Plugin/goodstuff.pm index effbc7de9..92bc8200a 100644 --- a/IkiWiki/Plugin/goodstuff.pm +++ b/IkiWiki/Plugin/goodstuff.pm @@ -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; -} # }}} +sub import { + hook(type => "getsetup", id => "goodstuff", call => \&getsetup); + foreach my $plugin (@bundle) { + IkiWiki::loadplugin($plugin); + } +} + +sub getsetup { + return + plugin => { + safe => 1, + rebuild => undef, + }, +} 1