]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/rawhtml.pm
bugfixes
[ikiwiki.git] / IkiWiki / Plugin / rawhtml.pm
index 011c3a862c678d0cae73a3df3f669dec6b8d1917..0838bcb225a538c5c21cf05d26bad778860d0fdd 100644 (file)
@@ -4,10 +4,20 @@ package IkiWiki::Plugin::rawhtml;
 
 use warnings;
 use strict;
-use IkiWiki 2.00;
+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
+                       section => "format",
+               },
+}
 
 1