Format literal preformatted text.
(self, text)
| 653 | return self.section(title, *args) |
| 654 | |
| 655 | def preformat(self, text): |
| 656 | """Format literal preformatted text.""" |
| 657 | text = self.escape(text.expandtabs()) |
| 658 | return replace(text, '\n\n', '\n \n', '\n\n', '\n \n', |
| 659 | ' ', ' ', '\n', '<br>\n') |
| 660 | |
| 661 | def multicolumn(self, list, format): |
| 662 | """Format a list of items into a multi-column list.""" |
nothing calls this directly
no test coverage detected