(self, attrs=None)
| 287 | self.new_paragraph() |
| 288 | |
| 289 | def start_ol(self, attrs=None): |
| 290 | # TODO: Need to control the bullets used for LI items |
| 291 | if self.list_depth != 0: |
| 292 | self.indent() |
| 293 | self.list_depth += 1 |
| 294 | self.new_paragraph() |
| 295 | |
| 296 | def end_ol(self): |
| 297 | self.list_depth -= 1 |
nothing calls this directly
no test coverage detected