2 # Ikiwiki skeleton plugin. Replace "skeleton" with the name of your plugin
3 # in the lines below, remove hooks you don't use, and flesh out the code to
4 # make it do something.
5 package IkiWiki::Plugin::skeleton;
12 IkiWiki::hook(type => "checkconfig", id => "skeleton",
13 call => \&checkconfig);
14 IkiWiki::hook(type => "preprocess", id => "skeleton",
15 call => \&preprocess);
16 IkiWiki::hook(type => "filter", id => "skeleton",
18 IkiWiki::hook(type => "delete", id => "skeleton",
20 IkiWiki::hook(type => "render", id => "skeleton",
22 IkiWiki::hook(type => "cgi", id => "skeleton",
26 sub checkconfig () { #{{{
27 IkiWiki::debug("skeleton plugin checkconfig");
30 sub preprocess (@) { #{{{
33 return "skeleton plugin result";
39 IkiWiki::debug("skeleton plugin running as filter");
47 IkiWiki::debug("skeleton plugin told that files were deleted: @files");
53 IkiWiki::debug("skeleton plugin told that files were rendered: @files");
59 IkiWiki::debug("skeleton plugin running in cgi");