Format a section with a big heading.
(self, title, *args)
| 648 | return result + '\n<td class="singlecolumn">%s</td></tr></table>' % contents |
| 649 | |
| 650 | def bigsection(self, title, *args): |
| 651 | """Format a section with a big heading.""" |
| 652 | title = '<strong class="bigsection">%s</strong>' % title |
| 653 | return self.section(title, *args) |
| 654 | |
| 655 | def preformat(self, text): |
| 656 | """Format literal preformatted text.""" |
no test coverage detected