From 903213e63fd6c409046f66e73881aba33c3926de Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 3 Aug 2008 16:40:12 -0400 Subject: add plugin safe/rebuild info (part 1 of 2) too many plugins.. brain exploding.. --- IkiWiki/Plugin/html.pm | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'IkiWiki/Plugin/html.pm') diff --git a/IkiWiki/Plugin/html.pm b/IkiWiki/Plugin/html.pm index 7623ba6a9..b75207578 100644 --- a/IkiWiki/Plugin/html.pm +++ b/IkiWiki/Plugin/html.pm @@ -7,6 +7,7 @@ use strict; use IkiWiki 2.00; sub import { #{{{ + hook(type => "getsetup", id => "html", call => \&getsetup); hook(type => "htmlize", id => "html", call => \&htmlize); hook(type => "htmlize", id => "htm", call => \&htmlize); @@ -15,6 +16,14 @@ sub import { #{{{ $config{wiki_file_prune_regexps} = [ grep { !m/\\\.x\?html\?\$/ } @{$config{wiki_file_prune_regexps}} ]; } # }}} +sub getsetup () { #{{{ + return + plugin => { + safe => 1, + rebuild => 1, # format plugin + }, +} #}}} + sub htmlize (@) { #{{{ my %params=@_; return $params{content}; -- cgit v1.2.3