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 ## Examples
1. Basic usage with default configuration: 1. Basic usage with default configuration:
```bash ```bash
rollup rollup
``` ```
2. Use specific file types and enable verbose logging: 2. Use specific file types and enable verbose logging:
```bash ```bash
rollup --file-types=.go,.js,.py --verbose rollup --file-types=.go,.js,.py --verbose
``` ```
3. Use a custom configuration file: 3. Use a custom configuration file:
```bash ```bash
rollup --config=my-config.yml rollup --config=my-config.yml
``` ```
4. Web scraping with content exclusion: 4. Web scraping with content exclusion:
```bash ```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 ## Contributing