We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running WikiNodeExample, nothing printed in the terminal.
I guess that maybe wiki page is changed. When I saw page's DOM's tree, there was another <p class='mw-empty-elt'> element. (And there is no text.)
<p class='mw-empty-elt'>
So I changed index 0 to 1. And I can see paragraph same the book.
index
// ... Elements paras = content.select("p"); Element firstPara = paras.get(0); // if change 0 -> 1, can see same result with book. //...
Also, I think can solve this problem through change wiki page. But I am not sure how to fix. I ever not contributed wiki page. :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue
Running WikiNodeExample, nothing printed in the terminal.
Cause
I guess that maybe wiki page is changed. When I saw page's DOM's tree, there was another
<p class='mw-empty-elt'>
element. (And there is no text.)Solved
So I changed
index
0 to 1. And I can see paragraph same the book.Also, I think can solve this problem through change wiki page. But I am not sure how to fix. I ever not contributed wiki page. :)
The text was updated successfully, but these errors were encountered: