]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/rawhtml.pm
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
[ikiwiki.git] / IkiWiki / Plugin / rawhtml.pm
index 30e9715141f4812a1227e729060d554f505e2c85..ad8a610c1420f73a3ce0eabf30f9300afcdff5a4 100644 (file)
@@ -4,10 +4,19 @@ package IkiWiki::Plugin::rawhtml;
 
 use warnings;
 use strict;
-use IkiWiki;
+use IkiWiki 3.00;
 
-sub import { #{{{
+sub import {
+       hook(type => "getsetup", id => "rawhtml", call => \&getsetup);
        $config{wiki_file_prune_regexps} = [ grep { !m/\\\.x\?html\?\$/ } @{$config{wiki_file_prune_regexps}} ];
-} # }}}
+}
+
+sub getsetup () {
+       return 
+               plugin => {
+                       safe => 1,
+                       rebuild => 1, # changes file types
+               },
+}
 
 1