(self, help_command, **kwargs)
| 481 | super().doc_global_option(help_command, **kwargs) |
| 482 | |
| 483 | def doc_examples(self, help_command, **kwargs): |
| 484 | if help_command.examples: |
| 485 | self.doc.style.h2('Examples') |
| 486 | self.doc.write(help_command.examples) |
| 487 | |
| 488 | def doc_subitems_start(self, help_command, **kwargs): |
| 489 | if help_command.command_table: |