Merge pull request #215 from moses-smt/alvations-patch-normalization

Single quotes should be escaped as single quotes.
This commit is contained in:
Hieu Hoang 2019-11-24 18:38:05 -08:00 committed by GitHub
commit 41b31167fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,8 +42,8 @@ while(<STDIN>) {
s/´/\'/g;
s/([a-z])([a-z])/$1\'$2/gi;
s/([a-z])([a-z])/$1\'$2/gi;
s//\"/g;
s//\"/g;
s//\'/g;
s//\'/g;
s//\"/g;
s/''/\"/g;
s/´´/\"/g;