From 41fb9e3fadc20e64c40eabcdf519ebc5f7670cc5 Mon Sep 17 00:00:00 2001 From: Arik Jones Date: Sat, 14 Sep 2024 21:38:17 -0500 Subject: [PATCH] Correction in web scraping example. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 59c8a17..4e0273f 100644 --- a/README.md +++ b/README.md @@ -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