fix(wget): add flag to wget subject

This commit is contained in:
miguel 2024-05-20 11:18:46 +01:00 committed by MSilva95
parent d94bcdb560
commit 9ef1f00575
1 changed files with 10 additions and 0 deletions

View File

@ -169,6 +169,16 @@ example:
$ go run . --mirror -X=/assets,/css https://example.com
```
- [Convert Links for Offline Viewing](https://www.gnu.org/software/wget/manual/wget.html#The-%60--convert_002dlinks%60-Option) (`--convert-links`)
> this flag will convert the links in the downloaded files so that they can be viewed offline, changing them to point to the locally downloaded resources instead of the original URLs.
example:
```console
$ go run . --mirror --convert-links https://example.com
```
### Hint
You can take a look into the [html package](https://godoc.org/golang.org/x/net/html) for some help.\