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
Not sure if this is the appropriate place...
I'm having an issue using RadiantCMS (unofficial branch) on Ruby 2.6 with Nokogiri 1.10.9 and Radius 0.7.5
In my case the selector is comming from Tag-Attribute which is a Radius::OrdString which breaks the Nokogiri-Selection:
selector = Radius::OrdString.new('div') Nokogiri("<div></div>").css(selector).size
=> 0
While this works:
selector = 'div' Nokogiri("<div></div>").css(selector).size
=> 1
The text was updated successfully, but these errors were encountered:
This seems to work
selector = Radius::OrdString.new('div') Nokogiri("<div></div>").css(selector.to_s).size #=> 1
is that a possible solution?
Sorry, something went wrong.
No branches or pull requests
Not sure if this is the appropriate place...
I'm having an issue using RadiantCMS (unofficial branch) on Ruby 2.6 with Nokogiri 1.10.9 and Radius 0.7.5
In my case the selector is comming from Tag-Attribute which is a Radius::OrdString which breaks the Nokogiri-Selection:
=> 0
While this works:
=> 1
The text was updated successfully, but these errors were encountered: