Format a section with a big heading.
(self, title, *args)
| 693 | return result + '\n<td class="singlecolumn">%s</td></tr></table>' % contents |
| 694 | |
| 695 | def bigsection(self, title, *args): |
| 696 | """Format a section with a big heading.""" |
| 697 | title = '<strong class="bigsection">%s</strong>' % title |
| 698 | return self.section(title, *args) |
| 699 | |
| 700 | def preformat(self, text): |
| 701 | """Format literal preformatted text.""" |
no test coverage detected