goquery icon indicating copy to clipboard operation
goquery copied to clipboard

Jquery style selector engine for HTML documents, in Go.

Results 3 goquery issues
Sort by recently updated
recently updated
newest added

https://github.com/crufter/goquery/blob/master/examples/local.go line 30 x, _ := goquery.Parse(example) change to x, _ := goquery.ParseString(example)

I've committed the sin of parsing the selectors with regexps... I will find something like Haskell's Parsec and fix it. The haskell port of this library (https://github.com/recurziv/haquery) is much better...

enhancement