summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/hnb.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-08-03 16:40:12 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-08-03 16:40:12 -0400
commit903213e63fd6c409046f66e73881aba33c3926de (patch)
tree8a1746ab17ce3faf56423c3189dce45423119546 /IkiWiki/Plugin/hnb.pm
parent9e0cbb73fe550d05e668d3584ef6f7981e781c8e (diff)
add plugin safe/rebuild info (part 1 of 2)
too many plugins.. brain exploding..
Diffstat (limited to 'IkiWiki/Plugin/hnb.pm')
-rw-r--r--IkiWiki/Plugin/hnb.pm17
1 files changed, 13 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/hnb.pm b/IkiWiki/Plugin/hnb.pm
index 846b0f2c9..40e4f9452 100644
--- a/IkiWiki/Plugin/hnb.pm
+++ b/IkiWiki/Plugin/hnb.pm
@@ -13,11 +13,20 @@ use strict;
use IkiWiki 2.00;
use File::Temp qw(:mktemp);
-sub import {
+sub import { #{{{
+ hook(type => "getsetup", id => "hnb", call => \&getsetup);
hook(type => "htmlize", id => "hnb", call => \&htmlize);
-}
+} #}}}
-sub htmlize (@) {
+sub getsetup () { #{{{
+ return
+ plugin => {
+ safe => 1,
+ rebuild => 1, # format plugin
+ },
+} #}}}
+
+sub htmlize (@) { #{{{
my %params = @_;
# hnb outputs version number etc. every time to STDOUT, so
@@ -43,6 +52,6 @@ sub htmlize (@) {
$ret =~ s/<body>.*//si;
return $ret;
-}
+} #}}}
1;