Str_ip markup tags from ``text`` using a list of tags
(text)
| 302 | |
| 303 | |
| 304 | def strip_known_markup_from_text(text): |
| 305 | """ |
| 306 | Str_ip markup tags from ``text`` using a list of tags |
| 307 | """ |
| 308 | return get_demarkuped_text(text, splitter=split_on_tags, keeper=keep_tag) |
| 309 | |
| 310 | |
| 311 | ALL_TAGS = frozenset( |
no test coverage detected