]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/goodstuff.pm
htmltidy robustness fixes
[ikiwiki.git] / IkiWiki / Plugin / goodstuff.pm
index effbc7de9ff14759409ba36bf9b18d8230fe2123..08ed960b4a3ff8bc7d10419e765a7bd3b4fbc8f0 100644 (file)
@@ -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