(self, title, indent_level=0)
| 243 | self._current_section.add_row(row_elements) |
| 244 | |
| 245 | def new_section(self, title, indent_level=0): |
| 246 | self._current_section = Section() |
| 247 | self._sections.append(self._current_section) |
| 248 | self._current_section.add_title(title) |
| 249 | self._current_section.indent_level = indent_level |
| 250 | |
| 251 | def render(self, stream): |
| 252 | max_width = self._calculate_max_width() |