Clear the output stream, as should be done after each page export. This is likely to be done by Page elements, starting to render a new page. The content of previous pages then should be cleared.
(self)
| 619 | return ''.join(self._htmlOut) |
| 620 | |
| 621 | def clearHtml(self): |
| 622 | """Clear the output stream, as should be done after each page export. |
| 623 | This is likely to be done by Page elements, starting to render a new page. |
| 624 | The content of previous pages then should be cleared.""" |
| 625 | self._htmlOut = [] |
| 626 | |
| 627 | def clearCss(self): |
| 628 | """We can safely clear the CSS, because the local CSS is not intended |
no outgoing calls
no test coverage detected