(self, strongness, buf)
| 104 | self._data, '\n', self.list_depth(), '#', buf, '\n']) |
| 105 | |
| 106 | def title(self, strongness, buf): |
| 107 | self._data = join([ |
| 108 | self._data, '\n', self.list_depth(), '#' * strongness, ' ', buf, '\n']) |
| 109 | |
| 110 | def new_line(self): |
| 111 | self._data = join([self._data, self.endl]) |
no test coverage detected