1 Wide characters should probably be supported, or, at the very least, warned about.
5 mkdir -p ikiwiki-utf-test/raw ikiwiki-utf-test/rendered
6 for page in txt mdwn; do
7 echo hello > ikiwiki-utf-test/raw/$page.$page
8 for text in 8 16 16BE 16LE 32 32BE 32LE; do
9 iconv -t UTF$text ikiwiki-utf-test/raw/$page.$page > ikiwiki-utf-test/raw/$page-utf$text.$page;
12 ikiwiki --verbose --plugin txt --plugin mdwn ikiwiki-utf-test/raw/ ikiwiki-utf-test/rendered/
13 www-browser ikiwiki-utf-test/rendered/ || x-www-browser ikiwiki-utf-test/rendered/
14 # rm -r ikiwiki-utf-test/ # some browsers rather stupidly daemonize themselves, so this operation can't easily be safely automated
16 BOMless LE and BE input is probably a lost cause.
18 Optimally, UTF-16 (which is ubiquitous in the Windows world) and UTF-32 should be fully supported, probably by converting to mostly-UTF-8 and using `&#xXXXX;` or `&#DDDDD;` XML escapes where necessary.
20 Suboptimally, UTF-16 and UTF-32 should be converted to UTF-8 where cleanly possible and a warning printed where impossible.