(text: str)
| 109 | |
| 110 | |
| 111 | def strip_top_level_internal_text(text: str) -> str: |
| 112 | stripped = strip_system_reminder_blocks(text) |
| 113 | for regex in _INTERNAL_TEXT_TAG_REGEXES: |
| 114 | stripped = regex.sub("", stripped) |
| 115 | return stripped.strip() |
| 116 | |
| 117 | |
| 118 | def is_internal_text(text: str) -> bool: |
no test coverage detected