]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/rawhtml.pm
ddate: Stop clobbering timeformat when not enabled.
[ikiwiki.git] / IkiWiki / Plugin / rawhtml.pm
index 30e9715141f4812a1227e729060d554f505e2c85..74ca13f3bcac3b1041fd73a1c35ea43e1729aed8 100644 (file)
@@ -4,10 +4,19 @@ package IkiWiki::Plugin::rawhtml;
 
 use warnings;
 use strict;
-use IkiWiki;
+use IkiWiki 2.00;
 
 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