(self)
| 281 | self.new_paragraph() |
| 282 | |
| 283 | def end_ul(self): |
| 284 | self.list_depth -= 1 |
| 285 | if self.list_depth != 0: |
| 286 | self.dedent() |
| 287 | self.new_paragraph() |
| 288 | |
| 289 | def start_ol(self, attrs=None): |
| 290 | # TODO: Need to control the bullets used for LI items |
no test coverage detected