Format an HTML page.
(self, title, contents)
| 606 | escape = _repr_instance.escape |
| 607 | |
| 608 | def page(self, title, contents): |
| 609 | """Format an HTML page.""" |
| 610 | return '''\ |
| 611 | <!DOCTYPE html> |
| 612 | <html lang="en"> |
| 613 | <head> |
| 614 | <meta charset="utf-8"> |
| 615 | <title>Python: %s</title> |
| 616 | </head><body> |
| 617 | %s |
| 618 | </body></html>''' % (title, contents) |
| 619 | |
| 620 | def heading(self, title, extras=''): |
| 621 | """Format a page heading.""" |
no outgoing calls
no test coverage detected