We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0ee5c9 commit 6cf4ee6Copy full SHA for 6cf4ee6
apps/common/util/split_model.py
@@ -344,9 +344,9 @@ def parse(self, text: str):
344
'content' in item and len(item.get('content').strip()) > 0]
345
346
def post_reset_paragraph(self, paragraph: Dict, title_list: List[str]):
347
- result = self.filter_title_special_characters(paragraph)
+ result = self.content_is_null(paragraph, title_list)
348
+ result = self.filter_title_special_characters(result)
349
result = self.sub_title(result)
- result = self.content_is_null(result, title_list)
350
return result
351
352
@staticmethod
0 commit comments