Format an HTML page.
(self, title, contents)
| 651 | escape = _repr_instance.escape |
| 652 | |
| 653 | def page(self, title, contents): |
| 654 | """Format an HTML page.""" |
| 655 | return '''\ |
| 656 | <!DOCTYPE html> |
| 657 | <html lang="en"> |
| 658 | <head> |
| 659 | <meta charset="utf-8"> |
| 660 | <title>Python: %s</title> |
| 661 | </head><body> |
| 662 | %s |
| 663 | </body></html>''' % (title, contents) |
| 664 | |
| 665 | def heading(self, title, extras=''): |
| 666 | """Format a page heading.""" |
no outgoing calls
no test coverage detected