From b74ddf69ce8063eecba34bdb3b5de3fd9af97f8b Mon Sep 17 00:00:00 2001 From: joey Date: Sun, 2 Jul 2006 17:46:23 +0000 Subject: perl bugnum and refix --- IkiWiki/Render.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'IkiWiki') diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index 08f098760..54e409040 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -33,12 +33,12 @@ sub htmlize ($$) { #{{{ } if ($type eq '.mdwn') { - # XXX explanation of this insanity wating on perl bug number -# $content=Encode::encode_utf8($content); + # Workaround for perl bug (#376329) + $content=Encode::encode_utf8($content); $content=Encode::encode_utf8($content); $content=Markdown::Markdown($content); $content=Encode::decode_utf8($content); -# $content=Encode::decode_utf8($content); + $content=Encode::decode_utf8($content); } else { error("htmlization of $type not supported"); -- cgit v1.2.3