We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca12d65 commit db772b1Copy full SHA for db772b1
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