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/camelcase.pm | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'IkiWiki/Plugin/camelcase.pm') diff --git a/IkiWiki/Plugin/camelcase.pm b/IkiWiki/Plugin/camelcase.pm index 0739bb01a..3f17df4a3 100644 --- a/IkiWiki/Plugin/camelcase.pm +++ b/IkiWiki/Plugin/camelcase.pm @@ -23,10 +23,19 @@ my $link_regexp=qr{ }x; sub import { #{{{ + hook(type => "getsetup", id => "camelcase", call => \&getsetup); hook(type => "linkify", id => "camelcase", call => \&linkify); hook(type => "scan", id => "camelcase", call => \&scan); } # }}} +sub getsetup () { #{{{ + return + plugin => { + safe => 1, + rebuild => undef, + }; +} #}}} + sub linkify (@) { #{{{ my %params=@_; my $page=$params{page}; -- cgit v1.2.3