node-soupselect
node-soupselect copied to clipboard
Port of Simon Willison's Soup Select (for BeautifulSoup) to node.js and node-htmlparser
Current version on npm is far behind repo one. Would you mind publishing a new one?
Given an HTML snippet such as ``` html something ``` The selector `span[foo]` works as expected, returning the span element with the id `eg`. But no variation of `span[data-foo]` seems...
I attempted to use these because I had two elements like this: ``` wrong right ``` I need sibling selectors so that I can do: ``` select( dom, "b.foo ~...
Implementation of direct child selector by disabling recursion for one loop after a > token. Sorry, I'm new to node and don't understand how to run your tests. Hopefully you...
Hi, I'ved got some html content that looks like this. Event A 23 January 2014 Event B 31 January 2014 How do I extract out the table rows ? this...
Please, implement :firs-child selector (pseudo-class) support.
Having a reference to a node, how do I select a node inside it? Documentation is very much appreciated. Thanks
Unused "require( 'sys' )" in soupselect.js prevents browserify-ication Could probably be taken out
I tried to use a child selector like "div#stuff > p" and it didn't work, is it a bug or a missing feature? Do you plan to implement it? Thanks.