From 76db0267e1db38af020459b63d4b41c557a649d2 Mon Sep 17 00:00:00 2001 From: "firecrawl-spring[bot]" <254786068+firecrawl-spring[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 15:01:56 +0000 Subject: [PATCH] docs(node): convert single-bullet pagination intros to prose Replace one-item bullet lists under each pagination subheading with plain prose intros so the section reads as a normal description-then-code pattern. Co-Authored-By: micahstairs --- sdks/node.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sdks/node.mdx b/sdks/node.mdx index 209616a04..52de079a4 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, {