A highlighter object that doesn't highlight. May be used to disable highlighting entirely.
| 48 | |
| 49 | |
| 50 | class NullHighlighter(Highlighter): |
| 51 | """A highlighter object that doesn't highlight. |
| 52 | |
| 53 | May be used to disable highlighting entirely. |
| 54 | |
| 55 | """ |
| 56 | |
| 57 | def highlight(self, text: Text) -> None: |
| 58 | """Nothing to do""" |
| 59 | |
| 60 | |
| 61 | class RegexHighlighter(Highlighter): |
no outgoing calls