Insert after with automatic attribute injection.
(self, elem, xml_content)
| 244 | return nodes |
| 245 | |
| 246 | def insert_after(self, elem, xml_content): |
| 247 | """Insert after with automatic attribute injection.""" |
| 248 | nodes = super().insert_after(elem, xml_content) |
| 249 | self._inject_attributes_to_nodes(nodes) |
| 250 | return nodes |
| 251 | |
| 252 | def insert_before(self, elem, xml_content): |
| 253 | """Insert before with automatic attribute injection.""" |
no test coverage detected