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
In HTML like:
<div>Text</div><span>Text</span>
the output of element.text() should be Text Text, as the div block creates a flow of text after it.
element.text()
Text Text
Currently it is incorrectly TextText.
TextText
element.wholeText() is and should be TextText, as it returns only non-normalized text.
element.wholeText()
The text was updated successfully, but these errors were encountered:
db5375e
jhy
No branches or pull requests
In HTML like:
the output of
element.text()
should beText Text
, as the div block creates a flow of text after it.Currently it is incorrectly
TextText
.element.wholeText()
is and should beTextText
, as it returns only non-normalized text.The text was updated successfully, but these errors were encountered: