2 # Raw html as a wiki page type.
3 package IkiWiki::Plugin::html;
10 IkiWiki::hook(type => "htmlize", id => "html", call => sub { shift });
11 IkiWiki::hook(type => "htmlize", id => "htm", call => sub { shift });
13 # ikiwiki defaults to skipping .html files as a security measure;
14 # make it process them so this plugin can take effect
15 $IkiWiki::config{wiki_file_prune_regexp} =~ s/\|\\\.x?html\?\$//;