summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/html.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-04 02:35:54 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-04 02:35:54 +0000
commitd8819689b1f7ffe80164f223b38f071c0783cd38 (patch)
tree7707bd11ac39d2d351972081026efd7d52acbd9b /IkiWiki/Plugin/html.pm
parenta5ea63e531bca272403f2d2f1e8adcd8071e0a2c (diff)
* Add xhtml files to the default prune regexp.
Diffstat (limited to 'IkiWiki/Plugin/html.pm')
-rw-r--r--IkiWiki/Plugin/html.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/html.pm b/IkiWiki/Plugin/html.pm
index 6bf813292..cf3d4506e 100644
--- a/IkiWiki/Plugin/html.pm
+++ b/IkiWiki/Plugin/html.pm
@@ -12,7 +12,7 @@ sub import { #{{{
# ikiwiki defaults to skipping .html files as a security measure;
# make it process them so this plugin can take effect
- $IkiWiki::config{wiki_file_prune_regexp} =~ s/\|\\\.html\?\$//;
+ $IkiWiki::config{wiki_file_prune_regexp} =~ s/\|\\\.x?html\?\$//;
} # }}}
1