Add description list ("dl" tag)
(self)
| 2193 | return child |
| 2194 | |
| 2195 | def add_description_list(self): |
| 2196 | """Add description list ("dl" tag)""" |
| 2197 | child = self.create_element("dl") |
| 2198 | self.append_child(child) |
| 2199 | return child |
| 2200 | |
| 2201 | def add_division(self): |
| 2202 | """Add "div" tag""" |
nothing calls this directly
no test coverage detected