diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-02 17:46:23 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-02 17:46:23 +0000 |
commit | b74ddf69ce8063eecba34bdb3b5de3fd9af97f8b (patch) | |
tree | b1cd4e043e2bb51157b21608e433bb5802a9b417 /IkiWiki/Render.pm | |
parent | 1452b3adf30145e8fd1208ac73da9d12967863bc (diff) | |
download | ikiwiki-b74ddf69ce8063eecba34bdb3b5de3fd9af97f8b.tar ikiwiki-b74ddf69ce8063eecba34bdb3b5de3fd9af97f8b.tar.gz |
perl bugnum and refix
Diffstat (limited to 'IkiWiki/Render.pm')
-rw-r--r-- | IkiWiki/Render.pm | 6 |
1 files changed, 3 insertions, 3 deletions
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"); |