X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/ee1ad53c4c2710aa7ded61bdc56f3a8cce514f22..4c6d359b5fbe8f746965a2646a7bea03284b23cc:/IkiWiki/Plugin/goodstuff.pm diff --git a/IkiWiki/Plugin/goodstuff.pm b/IkiWiki/Plugin/goodstuff.pm index effbc7de9..08ed960b4 100644 --- a/IkiWiki/Plugin/goodstuff.pm +++ b/IkiWiki/Plugin/goodstuff.pm @@ -11,20 +11,31 @@ my @bundle=qw{ img map meta + more orphans pagecount pagestats + progress shortcut smiley tag + table template toc toggle - otl }; sub import { #{{{ + hook(type => "getsetup", id => "goodstuff", call => \&getsetup); IkiWiki::loadplugin($_) foreach @bundle; } # }}} +sub getsetup { #{{{ + return + plugin => { + safe => 1, + rebuild => undef, + }, +} #}}} + 1