]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/rawhtml.pm
fix bug if git_root is "0"
[ikiwiki.git] / IkiWiki / Plugin / rawhtml.pm
index 30e9715141f4812a1227e729060d554f505e2c85..0838bcb225a538c5c21cf05d26bad778860d0fdd 100644 (file)
@@ -4,10 +4,20 @@ 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
+                       section => "format",
+               },
+}
 
 1