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 => "getopt", id => "skeleton",
14 IkiWiki::hook(type => "checkconfig", id => "skeleton",
15 call => \&checkconfig);
16 IkiWiki::hook(type => "preprocess", id => "skeleton",
17 call => \&preprocess);
18 IkiWiki::hook(type => "filter", id => "skeleton",
20 IkiWiki::hook(type => "htmlize", id => "skeleton",
22 IkiWiki::hook(type => "sanitize", id => "skeleton",
24 IkiWiki::hook(type => "pagetemplate", id => "skeleton",
25 call => \&pagetemplate);
26 IkiWiki::hook(type => "delete", id => "skeleton",
28 IkiWiki::hook(type => "change", id => "skeleton",
30 IkiWiki::hook(type => "cgi", id => "skeleton",
35 IkiWiki::debug("skeleton plugin getopt");
38 sub checkconfig () { #{{{
39 IkiWiki::debug("skeleton plugin checkconfig");
42 sub preprocess (@) { #{{{
45 return "skeleton plugin result";
51 IkiWiki::debug("skeleton plugin running as filter");
53 return $params{content};
56 sub htmlize ($) { #{{{
59 IkiWiki::debug("skeleton plugin running as htmlize");
64 sub sanitize ($) { #{{{
67 IkiWiki::debug("skeleton plugin running as a sanitizer");
72 sub pagetemplate (@) { #{{{
74 my $page=$params{page};
75 my $template=$params{template};
77 IkiWiki::debug("skeleton plugin running as a pagetemplate hook");
83 IkiWiki::debug("skeleton plugin told that files were deleted: @files");
89 IkiWiki::debug("skeleton plugin told that changed files were rendered: @files");
95 IkiWiki::debug("skeleton plugin running in cgi");