Format an HTML page.
(self, title, contents)
| 587 | escape = _repr_instance.escape |
| 588 | |
| 589 | def page(self, title, contents): |
| 590 | """Format an HTML page.""" |
| 591 | return '''\ |
| 592 | <!DOCTYPE html> |
| 593 | <html lang="en"> |
| 594 | <head> |
| 595 | <meta charset="utf-8"> |
| 596 | <title>Python: %s</title> |
| 597 | </head><body> |
| 598 | %s |
| 599 | </body></html>''' % (title, contents) |
| 600 | |
| 601 | def heading(self, title, extras=''): |
| 602 | """Format a page heading.""" |
no outgoing calls
no test coverage detected