Format a page heading.
(self, title, extras='')
| 599 | </body></html>''' % (title, contents) |
| 600 | |
| 601 | def heading(self, title, extras=''): |
| 602 | """Format a page heading.""" |
| 603 | return ''' |
| 604 | <table class="heading"> |
| 605 | <tr class="heading-text decor"> |
| 606 | <td class="title"> <br>%s</td> |
| 607 | <td class="extra">%s</td></tr></table> |
| 608 | ''' % (title, extras or ' ') |
| 609 | |
| 610 | def section(self, title, cls, contents, width=6, |
| 611 | prelude='', marginalia=None, gap=' '): |
no outgoing calls
no test coverage detected