aboutsummaryrefslogtreecommitdiff
path: root/doc/todo/utf8.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-05-26 15:33:14 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-05-26 15:33:14 +0000
commit29507e94a46d0f2006671d31ac6812ebd0715cee (patch)
tree9d66bda3cf499ecd43d82c1bcf4e763e7e312ce8 /doc/todo/utf8.mdwn
parent361ec86696628cdfe2f8904211c8b747bde10468 (diff)
downloadikiwiki-29507e94a46d0f2006671d31ac6812ebd0715cee.tar
ikiwiki-29507e94a46d0f2006671d31ac6812ebd0715cee.tar.gz
utf-8 support seems to be working now
Diffstat (limited to 'doc/todo/utf8.mdwn')
-rw-r--r--doc/todo/utf8.mdwn15
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/todo/utf8.mdwn b/doc/todo/utf8.mdwn
index 68195b729..b905e4633 100644
--- a/doc/todo/utf8.mdwn
+++ b/doc/todo/utf8.mdwn
@@ -25,4 +25,17 @@ The following problems have been observed when running ikiwiki this way:
Malformed UTF-8 character (fatal) at /usr/bin/markdown line 1317.
In this example, a literal 0x97 character had gotten into a markdown
- file.
+ file.
+
+ Running this before markdown can avoid it:
+
+ $content = Encode::encode_utf8($content);
+
+ I'm not sure how, or what should be done after markdown to get the string
+ back into a form that perl can treat as utf-8.
+
+* Apache "AddDefaultCharset on" settings will not play well with utf-8
+ pages.
+
+* CGI::FormBuilder needs to be told to set `charset => "utf-8"` so that
+ utf-8 is used in the edit form. (done)