]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/goodstuff.pm
avoid tempfile warning
[ikiwiki.git] / IkiWiki / Plugin / goodstuff.pm
index a18e626d4c94b037d8a05c3c971ab9600f0f6e95..451cd6f84fce568167c1d8ef045baba3513dcb80 100644 (file)
@@ -4,7 +4,7 @@ package IkiWiki::Plugin::goodstuff;
 
 use warnings;
 use strict;
-use IkiWiki 2.00;
+use IkiWiki 3.00;
 
 my @bundle=qw{
        brokenlinks
@@ -22,21 +22,22 @@ my @bundle=qw{
        template
        toc
        toggle
+       repolist
 };
 
-sub import { #{{{
+sub import {
        hook(type => "getsetup", id => "goodstuff", call => \&getsetup);
        foreach my $plugin (@bundle) {
                IkiWiki::loadplugin($plugin);
        }
-} # }}}
+}
 
-sub getsetup { #{{{
+sub getsetup {
        return 
                plugin => {
                        safe => 1,
                        rebuild => undef,
                },
-} #}}}
+}
 
 1