aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/rawhtml.pm
blob: 011c3a862c678d0cae73a3df3f669dec6b8d1917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl
# Copy html files raw.
package IkiWiki::Plugin::rawhtml;

use warnings;
use strict;
use IkiWiki 2.00;

sub import { #{{{
	$config{wiki_file_prune_regexps} = [ grep { !m/\\\.x\?html\?\$/ } @{$config{wiki_file_prune_regexps}} ];
} # }}}

1