Skip to content

Commit 1e9295f

Browse files
committed
fixed doc tests
1 parent eb02b5f commit 1e9295f

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/bless_crawl/mod.rs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,6 @@
1313
//! - Timeout: 15s default, 120s max
1414
//! - Wait time: 3s default, 20s max
1515
//! - Buffer sizes: 2MB (scrape), 128KB (map), 8MB (crawl)
16-
//!
17-
//! ## Example
18-
//!
19-
//! ```rust
20-
//! use blockless_sdk::*;
21-
//!
22-
//! // Create with default config
23-
//! let crawler = BlessCrawl::default();
24-
//! let result = crawler.scrape("https://example.com", None).unwrap();
25-
//!
26-
//! // Or override config per request
27-
//! let custom_config = ScrapeOptions { timeout: 30000, wait_time: 5000, ..Default::default() };
28-
//! let result = crawler.scrape("https://example.com", Some(custom_config)).unwrap();
29-
//! println!("Content: {}", result.data.content);
30-
//! ```
3116
3217
mod html_to_markdown;
3318
mod html_transform;

0 commit comments

Comments
 (0)