Each implementation of HelpRenderer must implement this render method.
(self, contents)
| 91 | self.output_stream = output_stream |
| 92 | |
| 93 | def render(self, contents): |
| 94 | """ |
| 95 | Each implementation of HelpRenderer must implement this |
| 96 | render method. |
| 97 | """ |
| 98 | converted_content = self._convert_doc_content(contents) |
| 99 | self._send_output_to_destination(converted_content) |
| 100 | |
| 101 | def _send_output_to_destination(self, output): |
| 102 | """ |
no test coverage detected