(text: Any)
| 628 | |
| 629 | |
| 630 | def _looks_like_feed_metadata_abstract(text: Any) -> bool: |
| 631 | normalized = _strip_html_markup(text).lower() |
| 632 | return bool(normalized and "published online:" in normalized) |
| 633 | |
| 634 | |
| 635 | def _clean_abstract_text(text: Any) -> str: |
no test coverage detected