Format literal preformatted text.
(self, text)
| 698 | return self.section(title, *args) |
| 699 | |
| 700 | def preformat(self, text): |
| 701 | """Format literal preformatted text.""" |
| 702 | text = self.escape(text.expandtabs()) |
| 703 | return replace(text, '\n\n', '\n \n', '\n\n', '\n \n', |
| 704 | ' ', ' ', '\n', '<br>\n') |
| 705 | |
| 706 | def multicolumn(self, list, format): |
| 707 | """Format a list of items into a multi-column list.""" |
nothing calls this directly
no test coverage detected