(self, attrs=None)
| 275 | self.end_li() |
| 276 | |
| 277 | def start_ul(self, attrs=None): |
| 278 | if self.list_depth != 0: |
| 279 | self.indent() |
| 280 | self.list_depth += 1 |
| 281 | self.new_paragraph() |
| 282 | |
| 283 | def end_ul(self): |
| 284 | self.list_depth -= 1 |
no test coverage detected