Commit 495dc870 authored by The Heavy's avatar The Heavy 🚂
Browse files

Update README with new usage option.

parent bf930632
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ a simple script to scan a html file and replace every img tag's src with an embe
## usage

```
usage: imgslipstream.py [-h] [--verbose] [--files] [--maxlen MAXLEN] source
usage: imgslipstream.py [-h] [--verbose] [--files] [--maxlen MAXLEN] [--url URL] source

Parses a HTML file for <img> tags, downloads the linked URLs, and embeds them into the HTML file.

@@ -19,6 +19,7 @@ options:
  --verbose, -v        Print more logging to the console.
  --files, -f          Make local files instead of embedding.
  --maxlen, -m MAXLEN  Change the max length of URLs allowed (default 100).
  --url, -u URL        Provide a relative URL where files can be downloaded from.
```

## why