Cause new child element specified by `child_bldr` to be appended to the children of this element.
(self, child_bldr)
| 55 | return elm |
| 56 | |
| 57 | def with_child(self, child_bldr): |
| 58 | """ |
| 59 | Cause new child element specified by `child_bldr` to be appended to |
| 60 | the children of this element. |
| 61 | """ |
| 62 | self._child_bldrs.append(child_bldr) |
| 63 | return self |
| 64 | |
| 65 | def with_text(self, text): |
| 66 | """ |