lib/scripts/recode.pl
author wenzelm
Fri, 04 Apr 2014 10:41:53 +0200
changeset 56398 15d0821c8667
parent 52835 0906c00bb21d
child 62506 860cd901ab43
permissions -rw-r--r--
afford larger full_index, to save a few milliseconds during rendering (notably text_overview);

#
# Author: Makarius
#
# recode.pl - recode utf8 for ML
#

for (@ARGV) {
  utf8::upgrade($_);
  s/([\x80-\xff])/\\${\(ord($1))}/g;
  print $_, " ";
}