From 93ca4870498264d0a4c822cebf792a3bcc61840a Mon Sep 17 00:00:00 2001 From: Mitar Date: Sat, 23 Apr 2022 14:34:58 -0700 Subject: [PATCH 1/3] There is no InnerHtml. --- utilities.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { From eef406fe05d422b1f28eb3730c9b81b4d0eab774 Mon Sep 17 00:00:00 2001 From: jakopako Date: Fri, 6 May 2022 13:37:08 +0200 Subject: [PATCH 2/3] added goskyr to related projects --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7752234..7ef05c9 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,7 @@ 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. ## Support From c76525c424309741e57234ca9b9fa6b7509b2801 Mon Sep 17 00:00:00 2001 From: davemolk Date: Fri, 10 Jun 2022 05:05:08 -0600 Subject: [PATCH 3/3] add goGetJS to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7ef05c9..6e3472c 100644 --- a/README.md +++ b/README.md @@ -155,6 +155,7 @@ func main() { - [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