(self, view, title, contents, plaintext)
| 746 | self.show_html_report(view, title, markdown_to_html(contents), plaintext) |
| 747 | |
| 748 | def show_html_report(self, view, title, contents, plaintext): |
| 749 | if len(plaintext) != 0: |
| 750 | self.show_plain_text_report(view, title, plaintext) |
| 751 | |
| 752 | def show_graph_report(self, view, title, graph): |
| 753 | pass |
no test coverage detected