diff options
author | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2014-02-15 23:22:02 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2014-02-15 23:22:02 -0500 |
commit | 426f08f9d2d2e76b83f024721f49e61b24dd425f (patch) | |
tree | 6aedc9b9751972663c72c49fba8108bebc8db4b3 /corpus | |
parent | 9e2f7fcfa76213f5e41abb4f4c9a264ebe8f9d8c (diff) |
fix for missing angle quote form
Diffstat (limited to 'corpus')
-rwxr-xr-x | corpus/support/quote-norm.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/corpus/support/quote-norm.pl b/corpus/support/quote-norm.pl index f677df66..7bdcee67 100755 --- a/corpus/support/quote-norm.pl +++ b/corpus/support/quote-norm.pl @@ -93,6 +93,8 @@ while(<STDIN>) { s/\x{ab}/\"/g; # opening guillemet s/\x{bb}/\"/g; # closing guillemet s/\x{0301}/'/g; # combining acute accent + s/\x{203a}/\"/g; # angle quotation mark + s/\x{2039}/\"/g; # angle quotation mark # Space inverted punctuation: s/¡/ ¡ /g; |