Format a page heading.
(self, title, extras='')
| 663 | </body></html>''' % (title, contents) |
| 664 | |
| 665 | def heading(self, title, extras=''): |
| 666 | """Format a page heading.""" |
| 667 | return ''' |
| 668 | <table class="heading"> |
| 669 | <tr class="heading-text decor"> |
| 670 | <td class="title"> <br>%s</td> |
| 671 | <td class="extra">%s</td></tr></table> |
| 672 | ''' % (title, extras or ' ') |
| 673 | |
| 674 | def section(self, title, cls, contents, width=6, |
| 675 | prelude='', marginalia=None, gap=' '): |
no outgoing calls
no test coverage detected