mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2025-02-01 05:21:40 +01:00
Ocr fix rules: fix for weird Unicode comma (#x201A) - thx djc :)
This commit is contained in:
parent
f8967d7feb
commit
2bcb0e54d4
@ -363,6 +363,7 @@ namespace Nikse.SubtitleEdit.Logic.Ocr
|
||||
text = text.Replace("fi", "fi"); // fb01
|
||||
text = text.Replace("fl", "fl"); // fb02
|
||||
text = text.Replace('ν', 'v'); // NOTE: first 'v' is a special unicode character!!!!
|
||||
text = text.Replace('‚', ','); // #x201A (SINGLE LOW-9 QUOTATION MARK) to plain old comma
|
||||
}
|
||||
|
||||
text = ReplaceWordsBeforeLineFixes(text);
|
||||
|
Loading…
x
Reference in New Issue
Block a user