sipb-www
/
ikiwiki.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
* Work on firming up the plugin interface:
[ikiwiki.git]
/
IkiWiki
/
Plugin
/
htmlscrubber.pm
diff --git
a/IkiWiki/Plugin/htmlscrubber.pm
b/IkiWiki/Plugin/htmlscrubber.pm
index d77ab809b7f67ae0e7d3d86842e12ea06a00736b..3035307c246001acefd8e3bd945a6f3b8280520b 100644
(file)
--- a/
IkiWiki/Plugin/htmlscrubber.pm
+++ b/
IkiWiki/Plugin/htmlscrubber.pm
@@
-6,8
+6,7
@@
use strict;
use IkiWiki;
sub import { #{{{
- IkiWiki::hook(type => "sanitize", id => "htmlscrubber",
- call => \&sanitize);
+ hook(type => "sanitize", id => "htmlscrubber", call => \&sanitize);
} # }}}
sub sanitize (@) { #{{{