Subject: | bad encoding in lib/Perl6/Bible/S05.pod |
lib/Perl6/Bible/S05.pod seems to be half Latin-1, half UTF-8. The
following seems to fix it:
perl -pi -e 's/(?<!\xc2)([\xab\xbb])/\xc2$1/g' lib/Perl6/Bible/S05.pod
(I'm reasonably sure there is a Right Way to do that, but I'm afraid I
don't know what it is.)