Serialize element and its children to a string of XHTML.
(element: Element)
| 190 | |
| 191 | |
| 192 | def to_xhtml_string(element: Element) -> str: |
| 193 | """ Serialize element and its children to a string of XHTML. """ |
| 194 | return _write_html(ElementTree(element).getroot(), format="xhtml") |
nothing calls this directly
no test coverage detected
searching dependent graphs…