remove period parsing in title

This commit is contained in:
Eshan Ramesh 2020-05-19 15:09:47 -04:00
parent 732831695f
commit a3e096edfd

View file

@ -29,7 +29,6 @@ RESET_COLOR = colorama.Fore.RESET
SENTENCE_SPLITTER = re.compile(
r"""
( # A sentence ends at one of two sequences:
[.!?\u203C\u203D\u2047\u2048\u2049\u3002\uFE52\uFE57\uFF01\uFF0E\uFF1F\uFF61] # Either, a sequence starting with a sentence terminal,
[\'\u2019\"\u201D]? # an optional right quote,
[\]\)]* # optional closing brackets and
\s+ # a sequence of required spaces.