use warnings;
use strict;
-use IkiWiki '1.00';
+use IkiWiki 2.00;
sub import { #{{{
hook(type => "getopt", id => "skeleton", call => \&getopt);
hook(type => "checkconfig", id => "skeleton", call => \&checkconfig);
+ hook(type => "needsbuild", id => "skeleton", call => \&needsbuild);
hook(type => "preprocess", id => "skeleton", call => \&preprocess);
hook(type => "filter", id => "skeleton", call => \&filter);
hook(type => "htmlize", id => "skeleton", call => \&htmlize);
debug("skeleton plugin checkconfig");
} #}}}
+sub needsbuild () { #{{{
+ debug("skeleton plugin needsbuild");
+} #}}}
+
sub preprocess (@) { #{{{
my %params=@_;