-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can get text of a <link></link> node #51
Comments
That's right, link is defined as an empty tag in HTML. Jsoup parses link tags with text content the same was as the browsers do (specifically, the text appears after the node, and if the link was in the head, the text is moved to the body). |
That's a pitty. I hope I can use JSoup to parse XML as well as HTML. The api is so easy to use. |
Yep I've been thinking about that, seems like it would be a good idea to implement. |
Great, hope it soon. |
Yes, it would be great with XML support. |
The result is :
It seems the content of "" node is ignored
The text was updated successfully, but these errors were encountered: