From: joey Date: Mon, 3 Jul 2006 22:42:11 +0000 (+0000) Subject: add htmlise X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/66ce94c46471c01b2c2cdeff3664347548e1e4d3 add htmlise --- diff --git a/IkiWiki/Plugin/skeleton.pm b/IkiWiki/Plugin/skeleton.pm index 226270c38..306f54415 100644 --- a/IkiWiki/Plugin/skeleton.pm +++ b/IkiWiki/Plugin/skeleton.pm @@ -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;