X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/3f3f3e46ad7890ba8ee7d1aeb51757424b534175..be2f9421d5d3d4359b61ccbfbdaa7a7df58ed990:/IkiWiki/Plugin/rawhtml.pm diff --git a/IkiWiki/Plugin/rawhtml.pm b/IkiWiki/Plugin/rawhtml.pm index 30e971514..74ca13f3b 100644 --- a/IkiWiki/Plugin/rawhtml.pm +++ b/IkiWiki/Plugin/rawhtml.pm @@ -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