blob: 30e9715141f4812a1227e729060d554f505e2c85 (
plain)
- #!/usr/bin/perl
- # Copy html files raw.
- package IkiWiki::Plugin::rawhtml;
- use warnings;
- use strict;
- use IkiWiki;
- sub import { #{{{
- $config{wiki_file_prune_regexps} = [ grep { !m/\\\.x\?html\?\$/ } @{$config{wiki_file_prune_regexps}} ];
- } # }}}
- 1
|