diff --git a/yomi_base/reader_util.py b/yomi_base/reader_util.py index 014263f..26ff3f2 100644 --- a/yomi_base/reader_util.py +++ b/yomi_base/reader_util.py @@ -70,7 +70,7 @@ def findSentence(content, position): if c in terminators: end = i + 1 break - elif c in quotesBwd: + elif (c in quotesBwd or c == '\n'): end = i break