]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/skeleton.pm
* Run page through any relevant filters when generating a page preview.
[ikiwiki.git] / 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);
+       IkiWiki::hook(type => "htmlize", id => "skeleton",
+               call => \&htmlize);
        IkiWiki::hook(type => "sanitize", id => "skeleton", 
                call => \&sanitize);
        IkiWiki::hook(type => "pagetemplate", id => "skeleton", 
@@ -45,6 +47,14 @@ sub filter (@) { #{{{
        return $params{content};
 } # }}}
 
+sub htmlize ($) { #{{{
+       my $content=shift;
+
+       IkiWiki::debug("skeleton plugin running as htmlize");
+
+       return $content;
+} # }}}
+
 sub sanitize ($) { #{{{
        my $content=shift;