(self, buf)
| 100 | self._data = join([self._data, self.list_depth(), buf, self.endl]) |
| 101 | |
| 102 | def not_title(self, buf): |
| 103 | self._data = join([ |
| 104 | self._data, '\n', self.list_depth(), '#', buf, '\n']) |
| 105 | |
| 106 | def title(self, strongness, buf): |
| 107 | self._data = join([ |
no test coverage detected