Answers the accumulated HTML as single string.
(self)
| 615 | print('### Cannot write HTML file "%s"' % path) |
| 616 | |
| 617 | def getHtml(self): |
| 618 | """Answers the accumulated HTML as single string.""" |
| 619 | return ''.join(self._htmlOut) |
| 620 | |
| 621 | def clearHtml(self): |
| 622 | """Clear the output stream, as should be done after each page export. |