(self, strongness, buf)
| 79 | self._data, '\n', self.list_depth(), '#' * strongness, ' ', buf, '\n']) |
| 80 | |
| 81 | def title_html(self, strongness, buf): |
| 82 | self._data = join([ |
| 83 | self._data, '\n', self.list_depth(), '<h', str(strongness), '>', buf, '</h', str(strongness), '>\n']) |
| 84 | |
| 85 | def inherit_join(self, inh): |
| 86 | self._data = join([ |
no test coverage detected