(self, paragraph: Dict, title_list: List[str])
| 428 | 'content' in item and len(item.get('content').strip()) > 0] |
| 429 | |
| 430 | def post_reset_paragraph(self, paragraph: Dict, title_list: List[str]): |
| 431 | result = self.content_is_null(paragraph, title_list) |
| 432 | result = self.filter_title_special_characters(result) |
| 433 | result = self.sub_title(result) |
| 434 | return result |
| 435 | |
| 436 | @staticmethod |
| 437 | def sub_title(paragraph: Dict): |
no test coverage detected