Is there a way to select all the contents of a node in Nokogiri?
<root>
<element>this is <hi>the content</hi> of my æøå element</element>
</root>
The result of getting the content of /root/element
should be:
this is <hi>the content</hi> of my æøå element
Edit:
It seems like the solution is simply to use myElement.inner_html()
. The problem I had was in fact that I was relying on an old version of libxml2, which escaped all the special characters.
I think the previous answer is assuming HTML. I'm not sure that's appropriate, so here's my (similar) answer:
If you want escape that, you can with
CGI.unescape
method: