]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/goodstuff.pm
preprocess text before htmlizing it
[ikiwiki.git] / IkiWiki / Plugin / goodstuff.pm
index df928f2226d485aba2a582363e59da44db9d229c..ed1f4ddfc6cab5d88604be3fbe409ba3a573f642 100644 (file)
@@ -11,21 +11,25 @@ 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;
+       foreach my $plugin (@bundle) {
+               IkiWiki::loadplugin($plugin);
+       }
 } # }}}
 
 sub getsetup { #{{{