MCPcopy Index your code
hub / github.com/aws/aws-cli / doc_title

Method doc_title

awscli/clidocs.py:798–807  ·  view source on GitHub ↗
(self, help_command, **kwargs)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 4

get_tag_single_valueMethod · 0.80
new_paragraphMethod · 0.45
h1Method · 0.45

Tested by

no test coverage detected