]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/skeleton.pm
toc
[git.ikiwiki.info.git] / IkiWiki / Plugin / skeleton.pm
index 27da50e6fba80fe7c998dbbcb7b4265c56f42a76..4683b00ba707a51809001dd3baa79f6068a1bf3c 100644 (file)
@@ -21,6 +21,8 @@ sub import { #{{{
                call => \&htmlize);
        IkiWiki::hook(type => "sanitize", id => "skeleton", 
                call => \&sanitize);
                call => \&htmlize);
        IkiWiki::hook(type => "sanitize", id => "skeleton", 
                call => \&sanitize);
+       IkiWiki::hook(type => "format", id => "skeleton", 
+               call => \&format);
        IkiWiki::hook(type => "pagetemplate", id => "skeleton", 
                call => \&pagetemplate);
        IkiWiki::hook(type => "delete", id => "skeleton", 
        IkiWiki::hook(type => "pagetemplate", id => "skeleton", 
                call => \&pagetemplate);
        IkiWiki::hook(type => "delete", id => "skeleton", 
@@ -29,6 +31,8 @@ sub import { #{{{
                call => \&change);
        IkiWiki::hook(type => "cgi", id => "skeleton", 
                call => \&cgi);
                call => \&change);
        IkiWiki::hook(type => "cgi", id => "skeleton", 
                call => \&cgi);
+       IkiWiki::hook(type => "savestate", id => "savestate", 
+               call => \&savestate);
 } # }}}
 
 sub getopt () { #{{{
 } # }}}
 
 sub getopt () { #{{{
@@ -69,6 +73,14 @@ sub sanitize ($) { #{{{
        return $content;
 } # }}}
 
        return $content;
 } # }}}
 
+sub format ($) { #{{{
+       my $content=shift;
+       
+       IkiWiki::debug("skeleton plugin running as a formatter");
+
+       return $content;
+} # }}}
+
 sub pagetemplate (@) { #{{{
        my %params=@_;
        my $page=$params{page};
 sub pagetemplate (@) { #{{{
        my %params=@_;
        my $page=$params{page};
@@ -95,4 +107,8 @@ sub cgi ($) { #{{{
        IkiWiki::debug("skeleton plugin running in cgi");
 } #}}}
 
        IkiWiki::debug("skeleton plugin running in cgi");
 } #}}}
 
+sub savestate () { #{{{
+       IkiWiki::debug("skeleton plugin running in savestate");
+} #}}}
+
 1
 1