diff --git a/README.md b/README.md index 7752234..6e3472c 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,8 @@ func main() { - [Geziyor](https://github.com/geziyor/geziyor), a fast web crawling & scraping framework for Go. Supports JS rendering. - [Pagser](https://github.com/foolin/pagser), a simple, easy, extensible, configurable HTML parser to struct based on goquery and struct tags. - [stitcherd](https://github.com/vhodges/stitcherd), A server for doing server side includes using css selectors and DOM updates. +- [goskyr](https://github.com/jakopako/goskyr), an easily configurable command-line scraper written in Go. +- [goGetJS](https://github.com/davemolk/goGetJS), a tool for extracting, searching, and saving JavaScript files (with optional headless browser). ## Support diff --git a/utilities.go b/utilities.go index 2e6fced..ecd3453 100644 --- a/utilities.go +++ b/utilities.go @@ -73,7 +73,7 @@ func Render(w io.Writer, s *Selection) error { // the selection - that is, the HTML including the first element's // tag and attributes. // -// Unlike InnerHtml, this is a function and not a method on the Selection, +// Unlike Html, this is a function and not a method on the Selection, // because this is not a jQuery method (in javascript-land, this is // a property provided by the DOM). func OuterHtml(s *Selection) (string, error) {