Get all text inside a tag in lxml
Just use the node.itertext()
method, as in:
''.join(node.itertext())
Does text_content() do what you need?
Just use the node.itertext()
method, as in:
''.join(node.itertext())
Does text_content() do what you need?