]> sipb.mit.edu Git - ikiwiki.git/commitdiff
add htmlise
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Mon, 3 Jul 2006 22:42:11 +0000 (22:42 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Mon, 3 Jul 2006 22:42:11 +0000 (22:42 +0000)
IkiWiki/Plugin/skeleton.pm

index 226270c38fdaed70d83689f1ca0617bc6deccca6..306f54415c6560f62562f4ac50f91961540e8047 100644 (file)
@@ -15,6 +15,8 @@ sub import { #{{{
                call => \&preprocess);
        IkiWiki::hook(type => "filter", id => "skeleton", 
                call => \&filter);
                call => \&preprocess);
        IkiWiki::hook(type => "filter", id => "skeleton", 
                call => \&filter);
+       IkiWiki::hook(type => "htmlize", id => "skeleton",
+               call => \&htmlize);
        IkiWiki::hook(type => "sanitize", id => "skeleton", 
                call => \&sanitize);
        IkiWiki::hook(type => "pagetemplate", id => "skeleton", 
        IkiWiki::hook(type => "sanitize", id => "skeleton", 
                call => \&sanitize);
        IkiWiki::hook(type => "pagetemplate", id => "skeleton", 
@@ -45,6 +47,14 @@ sub filter (@) { #{{{
        return $params{content};
 } # }}}
 
        return $params{content};
 } # }}}
 
+sub htmlize ($) { #{{{
+       my $content=shift;
+
+       IkiWiki::debug("skeleton plugin running as htmlize");
+
+       return $content;
+} # }}}
+
 sub sanitize ($) { #{{{
        my $content=shift;
        
 sub sanitize ($) { #{{{
        my $content=shift;