Format literal preformatted text.
(self, text)
| 634 | return self.section(title, *args) |
| 635 | |
| 636 | def preformat(self, text): |
| 637 | """Format literal preformatted text.""" |
| 638 | text = self.escape(text.expandtabs()) |
| 639 | return replace(text, '\n\n', '\n \n', '\n\n', '\n \n', |
| 640 | ' ', ' ', '\n', '<br>\n') |
| 641 | |
| 642 | def multicolumn(self, list, format): |
| 643 | """Format a list of items into a multi-column list.""" |
no test coverage detected