Remove boldface formatting from text.
(text: str)
| 64 | |
| 65 | |
| 66 | def plain(text: str) -> str: |
| 67 | """Remove boldface formatting from text.""" |
| 68 | return re.sub('.\b', '', text) |
| 69 | |
| 70 | |
| 71 | def tty_pager(text: str, title: str = '') -> None: |
no test coverage detected
searching dependent graphs…