Format a section with a big heading.
(self, title, *args)
| 629 | return result + '\n<td class="singlecolumn">%s</td></tr></table>' % contents |
| 630 | |
| 631 | def bigsection(self, title, *args): |
| 632 | """Format a section with a big heading.""" |
| 633 | title = '<strong class="bigsection">%s</strong>' % title |
| 634 | return self.section(title, *args) |
| 635 | |
| 636 | def preformat(self, text): |
| 637 | """Format literal preformatted text.""" |
no test coverage detected