(self, section)
| 67 | return doc_structure.flush_structure() |
| 68 | |
| 69 | def title(self, section): |
| 70 | section.style.h1(self._client.__class__.__name__) |
| 71 | service_id = self._client.meta.service_model.service_id.hyphenize() |
| 72 | self._event_emitter.emit( |
| 73 | 'docs.{}.{}'.format('title', service_id), section=section |
| 74 | ) |
| 75 | |
| 76 | def table_of_contents(self, section): |
| 77 | section.style.table_of_contents(title='Table of Contents', depth=2) |
no test coverage detected