Format a page heading.
(self, title, extras='')
| 618 | </body></html>''' % (title, contents) |
| 619 | |
| 620 | def heading(self, title, extras=''): |
| 621 | """Format a page heading.""" |
| 622 | return ''' |
| 623 | <table class="heading"> |
| 624 | <tr class="heading-text decor"> |
| 625 | <td class="title"> <br>%s</td> |
| 626 | <td class="extra">%s</td></tr></table> |
| 627 | ''' % (title, extras or ' ') |
| 628 | |
| 629 | def section(self, title, cls, contents, width=6, |
| 630 | prelude='', marginalia=None, gap=' '): |
no outgoing calls
no test coverage detected