aboutsummaryrefslogtreecommitdiff
path: root/ikiwiki.in
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2010-03-24 16:19:50 -0400
committerJoey Hess <joey@gnu.kitenet.net>2010-03-24 16:19:50 -0400
commit021952969933388021001b259462406cbc94c2a6 (patch)
treeeea1510d03fdfe5e3d5761dce7f2836461dd1d10 /ikiwiki.in
parenteb06a0135511fc5b5422f07ca5344ce114402a61 (diff)
downloadikiwiki-021952969933388021001b259462406cbc94c2a6.tar
ikiwiki-021952969933388021001b259462406cbc94c2a6.tar.gz
fix unicode with YAML::Syck
Syck-- it doesn't use unicode by default?! Hello, 2010 calling..
Diffstat (limited to 'ikiwiki.in')
-rwxr-xr-xikiwiki.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/ikiwiki.in b/ikiwiki.in
index 1758399ea..b62962ad8 100755
--- a/ikiwiki.in
+++ b/ikiwiki.in
@@ -103,6 +103,7 @@ sub getconfig () {
}
eval q{use YAML::Any};
eval q{use YAML} if $@;
+ $YAML::Syck::ImplicitUnicode=1;
die $@ if $@;
$config{$var}=Load($val."\n");
},