Exemple #1
0
    def get_metadata_html(self) -> str:
        meta_data = parser.Metadata(self.full_name)
        for item in itertools.chain(self.classes, self.methods,
                                    self.other_members):
            meta_data.append(item)

        return meta_data.build_html()
Exemple #2
0
  def get_metadata_html(self):
    meta_data = parser.Metadata(self.full_name)

    # Objects with their own pages are not added to the metadata list for the
    # module, the module only has a link to the object page. No docs.
    for item in self.other_members:
      meta_data.append(item)

    return meta_data.build_html()
Exemple #3
0
 def get_metadata_html(self) -> str:
     return parser.Metadata(self.full_name).build_html()