(self, help_command, **kwargs)
| 796 | doc.write(' ]') |
| 797 | |
| 798 | def doc_title(self, help_command, **kwargs): |
| 799 | doc = help_command.doc |
| 800 | doc.style.new_paragraph() |
| 801 | doc.style.link_target_definition( |
| 802 | refname=f'cli:aws help {self.help_command.name}', link='' |
| 803 | ) |
| 804 | title = self._topic_tag_db.get_tag_single_value( |
| 805 | help_command.name, 'title' |
| 806 | ) |
| 807 | doc.style.h1(title) |
| 808 | |
| 809 | def doc_description(self, help_command, **kwargs): |
| 810 | doc = help_command.doc |
nothing calls this directly
no test coverage detected