diff --git a/sdks/node.mdx b/sdks/node.mdx index 209616a0..52de079a 100644 --- a/sdks/node.mdx +++ b/sdks/node.mdx @@ -121,11 +121,11 @@ Use the waiter method `crawl` for the simplest experience, or start a job and pa ##### Simple crawl (auto-pagination, default) -- See the default flow in [Crawling a Website](#crawling-a-website). +See the default flow in [Crawling a Website](#crawling-a-website). ##### Manual crawl with pagination control (single page) -- Start a job, then fetch one page at a time with `autoPaginate: false`. +Start a job, then fetch one page at a time with `autoPaginate: false`: ```js Node const crawlStart = await firecrawl.startCrawl('https://docs.firecrawl.dev', { limit: 5 }); @@ -137,7 +137,7 @@ console.log('crawl single page:', crawlSingle.status, 'docs:', crawlSingle.data. ##### Manual crawl with limits (auto-pagination + early stop) -- Keep auto-pagination on but stop early with `maxPages`, `maxResults`, or `maxWaitTime`. +Keep auto-pagination on but stop early with `maxPages`, `maxResults`, or `maxWaitTime`: ```js Node const crawlLimited = await firecrawl.getCrawlStatus(crawlJobId, { @@ -155,11 +155,11 @@ Use the waiter method `batchScrape`, or start a job and page manually. ##### Simple batch scrape (auto-pagination, default) -- See the default flow in [Batch Scrape](/features/batch-scrape). +See the default flow in [Batch Scrape](/features/batch-scrape). ##### Manual batch scrape with pagination control (single page) -- Start a job, then fetch one page at a time with `autoPaginate: false`. +Start a job, then fetch one page at a time with `autoPaginate: false`: ```js Node const batchStart = await firecrawl.startBatchScrape([ @@ -174,7 +174,7 @@ console.log('batch single page:', batchSingle.status, 'docs:', batchSingle.data. ##### Manual batch scrape with limits (auto-pagination + early stop) -- Keep auto-pagination on but stop early with `maxPages`, `maxResults`, or `maxWaitTime`. +Keep auto-pagination on but stop early with `maxPages`, `maxResults`, or `maxWaitTime`: ```js Node const batchLimited = await firecrawl.getBatchScrapeStatus(batchJobId, {