(text: Any)
| 633 | |
| 634 | |
| 635 | def _clean_abstract_text(text: Any) -> str: |
| 636 | normalized = _strip_html_markup(text) |
| 637 | normalized = FEED_METADATA_PREFIX_RE.sub("", normalized).strip(" \n\t;,:-") |
| 638 | return _clean_text(normalized) |
| 639 | |
| 640 | |
| 641 | def _clean_pdf_evidence_text(text: Any) -> str: |
no test coverage detected