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
My coworker and I ran into this funny case where the jruby version of Nokogiri kicks up an error that MRI does not:
~% jruby -e "require 'nokogiri'; Nokogiri::HTML::DocumentFragment.parse('').unlink" RuntimeError: TYPE: 11 PARENT NULL unlink at nokogiri/XmlNode.java:1313 (root) at -e:1 ~% ruby -e "require 'nokogiri'; Nokogiri::HTML::DocumentFragment.parse('').unlink" ~%
The case for this is easily avoided with blank checking, but we were wondering if there was any explanation for it. Thanks!
The text was updated successfully, but these errors were encountered:
5317a9b
No branches or pull requests
My coworker and I ran into this funny case where the jruby version of Nokogiri kicks up an error that MRI does not:
The case for this is easily avoided with blank checking, but we were wondering if there was any explanation for it. Thanks!
The text was updated successfully, but these errors were encountered: