(self, help_command, **kwargs)
| 128 | doc.style.h1(help_command.name) |
| 129 | |
| 130 | def doc_description(self, help_command, **kwargs): |
| 131 | doc = help_command.doc |
| 132 | doc.style.h2('Description') |
| 133 | doc.include_doc_string(help_command.description) |
| 134 | doc.style.new_paragraph() |
| 135 | |
| 136 | def doc_synopsis_start(self, help_command, **kwargs): |
| 137 | self._documented_arg_groups = [] |