Correction in web scraping example.

This commit is contained in:
Arik Jones
2024-09-14 21:38:17 -05:00
parent 6cb2f03d74
commit 41fb9e3fad

View File

@@ -64,23 +64,26 @@ scrape:
## Examples
1. Basic usage with default configuration:
```bash
rollup
```
2. Use specific file types and enable verbose logging:
```bash
rollup --file-types=.go,.js,.py --verbose
```
3. Use a custom configuration file:
```bash
rollup --config=my-config.yml
```
4. Web scraping with content exclusion:
```bash
rollup --url=https://example.com --css=.main-content --exclude-css=.ads,.sidebar
rollup web --url=https://example.com --css=.main-content --exclude-css=.ads,.sidebar
```
## Contributing