summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/textile.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-06-16 15:43:37 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-06-16 15:43:37 -0400
commitbd7edfd9ca050edebbd6c09e24834934074909a8 (patch)
tree44b85669eb5ea941650b04970883f859243334f3 /IkiWiki/Plugin/textile.pm
parent00532174881f2171358df1ffe69b8ed1e31cd99c (diff)
textile: The Text::Textile perl module has some regexps that fail if input is flagged as utf-8, but contains invalid characters such as 0x92. To prevent it from crashing, re-encode the content before calling it, which will ensure that it's really utf-8.
Diffstat (limited to 'IkiWiki/Plugin/textile.pm')
-rw-r--r--IkiWiki/Plugin/textile.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/textile.pm b/IkiWiki/Plugin/textile.pm
index 5de71bf6e..208f295d2 100644
--- a/IkiWiki/Plugin/textile.pm
+++ b/IkiWiki/Plugin/textile.pm
@@ -7,6 +7,7 @@ package IkiWiki::Plugin::textile;
use warnings;
use strict;
use IkiWiki 2.00;
+use Encode;
sub import { #{{{
hook(type => "htmlize", id => "txtl", call => \&htmlize);
@@ -14,7 +15,7 @@ sub import { #{{{
sub htmlize (@) { #{{{
my %params=@_;
- my $content = $params{content};
+ my $content = decode_utf8(encode_utf8($params{content}));
eval q{use Text::Textile};
return $content if $@;