Return the XML generated from `cxel_str`.
(cxel_str: str)
| 42 | |
| 43 | |
| 44 | def xml(cxel_str: str) -> str: |
| 45 | """Return the XML generated from `cxel_str`.""" |
| 46 | root_node.parseWithTabs() |
| 47 | root_token = root_node.parseString(cxel_str) |
| 48 | xml = root_token.element.xml |
| 49 | return xml |
| 50 | |
| 51 | |
| 52 | # ==================================================================== |
no outgoing calls