Simply print unformatted text. This is the ultimate fallback.
(text: str, title: str = '')
| 120 | |
| 121 | |
| 122 | def plain_pager(text: str, title: str = '') -> None: |
| 123 | """Simply print unformatted text. This is the ultimate fallback.""" |
| 124 | sys.stdout.write(plain(escape_stdout(text))) |
| 125 | |
| 126 | |
| 127 | def pipe_pager(text: str, cmd: str, title: str = '') -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…