Return the XML generated from `cxel_str`.
(cxel_str: str)
| 35 | |
| 36 | |
| 37 | def xml(cxel_str: str) -> str: |
| 38 | """Return the XML generated from `cxel_str`.""" |
| 39 | root_token = root_node.parseString(cxel_str) |
| 40 | xml = root_token.element.xml |
| 41 | return xml |
| 42 | |
| 43 | |
| 44 | # ==================================================================== |
no outgoing calls