File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 11module Docs
22 class Go < UrlScraper
33 self . type = 'go'
4- self . release = '1.23 .0'
4+ self . release = '1.24 .0'
55 self . base_url = 'https://golang.org/pkg/'
66 self . links = {
77 home : 'https://golang.org/' ,
@@ -10,10 +10,19 @@ class Go < UrlScraper
1010
1111 # Run godoc locally, since https://golang.org/pkg/ redirects to https://pkg.go.dev/std with rate limiting / scraping protection.
1212
13- # podman run --net host --rm -it docker.io/golang:1.23 .0
13+ # podman run --net host --rm -it docker.io/golang:1.24 .0
1414 #podman# go install golang.org/x/tools/cmd/godoc@latest
1515 #podman# rm -r /usr/local/go/test/
1616 #podman# godoc -http 0.0.0.0:6060 -v
17+
18+ # or using alpine
19+ # podman run --net host --rm -it alpine:latest
20+ #podman# apk add curl
21+ #podman# curl -LO https://go.dev/dl/go1.24.0.linux-amd64.tar.gz
22+ #podman# tar xf go1.24.0.linux-amd64.tar.gz
23+ #podman# go/bin/go install golang.org/x/tools/cmd/godoc@latest
24+ #podman# /root/go/bin/godoc -http 0.0.0.0:6060 -v
25+
1726 self . base_url = 'http://localhost:6060/pkg/'
1827
1928 html_filters . push 'clean_local_urls'
You can’t perform that action at this time.
0 commit comments