projects
/
ikiwiki
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
textile: The Text::Textile perl module has some regexps that fail if input is flagged...
[ikiwiki]
/
IkiWiki
/
Plugin
/
rawhtml.pm
1
#!/usr/bin/perl
2
# Copy html files raw.
3
package IkiWiki::Plugin::rawhtml;
4
5
use warnings;
6
use strict;
7
use IkiWiki 2.00;
8
9
sub import { #{{{
10
$config{wiki_file_prune_regexps} = [ grep { !m/\\\.x\?html\?\$/ } @{$config{wiki_file_prune_regexps}} ];
11
} # }}}
12
13
1