Subclass of TextDoc which overrides string styling
| 1626 | return line |
| 1627 | |
| 1628 | class _PlainTextDoc(TextDoc): |
| 1629 | """Subclass of TextDoc which overrides string styling""" |
| 1630 | def bold(self, text): |
| 1631 | return text |
| 1632 | |
| 1633 | # --------------------------------------------------------- user interfaces |
| 1634 |