Merge branch 'LmeSzinc:master' into master

This commit is contained in:
Schwarze-Katze 2024-03-06 17:03:33 +08:00 committed by GitHub
commit 7c845c0a0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,6 +23,8 @@ class OcrCharacterName(OcrWhiteLetterOnComplexBackground):
# Dan Heng o.ImbibitorLunae # Dan Heng o.ImbibitorLunae
result = re.sub(r'[0Oo\-. ]{1,3}Imbi', 'Imbi', result) result = re.sub(r'[0Oo\-. ]{1,3}Imbi', 'Imbi', result)
result = re.sub(r'院.?梅', '阮•梅', result)
return super().after_process(result) return super().after_process(result)