summaryrefslogtreecommitdiff
path: root/IkiWiki/Render.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-02 17:44:43 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-02 17:44:43 +0000
commit1452b3adf30145e8fd1208ac73da9d12967863bc (patch)
treeab4230abbf0f8cfee509fdc0225abba4c3944e7e /IkiWiki/Render.pm
parentc7e06b65fd90c5f87fb0cd7da9b10f690d74087f (diff)
so make sure to let perl know it should be handled as utf8. Also,
* Improve layout of edit page so formatting help link is always visible w/o getting in the way of the preview.
Diffstat (limited to 'IkiWiki/Render.pm')
-rw-r--r--IkiWiki/Render.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm
index d23dfdc25..08f098760 100644
--- a/IkiWiki/Render.pm
+++ b/IkiWiki/Render.pm
@@ -34,11 +34,11 @@ sub htmlize ($$) { #{{{
if ($type eq '.mdwn') {
# XXX explanation of this insanity wating on perl bug number
- $content=Encode::encode_utf8($content);
+# $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");