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 core.py the XPath expression is unnecessarily wide:
core.py
ptest = subtree.xpath(//p//text())
In this part, it is marked as //p//text() so It's looking for the root's p-tag rather than the subtree's p-tag.
//p//text()
.//p//text() would be the right approach.
.//p//text()
Originally posted by @jake-yi in #287
The text was updated successfully, but these errors were encountered:
It changes the extraction parameters so the thresholds below have to be revised.
Sorry, something went wrong.
No branches or pull requests
In
core.py
the XPath expression is unnecessarily wide:ptest = subtree.xpath(//p//text())
In this part, it is marked as
//p//text()
so It's looking for the root's p-tag rather than the subtree's p-tag..//p//text()
would be the right approach.Originally posted by @jake-yi in #287
The text was updated successfully, but these errors were encountered: