You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(docs): name the input that gates Firecrawl search scrape output
The previous wording ended each description with "for which the Search
operation exposes no visible input", a relative clause that attaches
ambiguously and never tells the reader what controls the field. Name
scrapeOptions and note that it is hidden.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/firecrawl.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,11 +167,11 @@ Search for information on the web using Firecrawl
167
167
| ↳ `title`| string | Search result title from search engine |
168
168
| ↳ `description`| string | Search result description/snippet from search engine |
169
169
| ↳ `url`| string | URL of the search result |
170
-
| ↳ `markdown`| string | Page content in markdown; returned only when scraping was requested, for which the Search operation exposes no visible input |
171
-
| ↳ `html`| string | Processed HTML content; returned only when "html" is among the requested scrape formats, for which the Search operation exposes no visible input |
172
-
| ↳ `rawHtml`| string | Unprocessed raw HTML; returned only when "rawHtml" is among the requested scrape formats, for which the Search operation exposes no visible input |
173
-
| ↳ `links`| array | Links found on the page; returned only when "links" is among the requested scrape formats, for which the Search operation exposes no visible input |
174
-
| ↳ `screenshot`| string | Screenshot URL \(expires after 24 hours\); returned only when "screenshot" is among the requested scrape formats, for which the Search operation exposes no visible input |
170
+
| ↳ `markdown`| string | Page content in markdown; returned only when scraping was requested via the hidden scrapeOptions input |
171
+
| ↳ `html`| string | Processed HTML content; returned only when "html" is among the scrape formats requested via the hidden scrapeOptions input |
172
+
| ↳ `rawHtml`| string | Unprocessed raw HTML; returned only when "rawHtml" is among the scrape formats requested via the hidden scrapeOptions input |
173
+
| ↳ `links`| array | Links found on the page; returned only when "links" is among the scrape formats requested via the hidden scrapeOptions input |
174
+
| ↳ `screenshot`| string | Screenshot URL \(expires after 24 hours\); returned only when "screenshot" is among the scrape formats requested via the hidden scrapeOptions input |
175
175
| ↳ `metadata`| object | Metadata about the search result page |
176
176
| ↳ `title`| string | Page title |
177
177
| ↳ `description`| string | Page meta description |
'Page content in markdown; returned only when scraping was requested, for which the Search operation exposes no visible input',
139
+
'Page content in markdown; returned only when scraping was requested via the hidden scrapeOptions input',
140
140
optional: true,
141
141
},
142
142
html: {
143
143
type: 'string',
144
144
description:
145
-
'Processed HTML content; returned only when "html" is among the requested scrape formats, for which the Search operation exposes no visible input',
145
+
'Processed HTML content; returned only when "html" is among the scrape formats requested via the hidden scrapeOptions input',
146
146
optional: true,
147
147
},
148
148
rawHtml: {
149
149
type: 'string',
150
150
description:
151
-
'Unprocessed raw HTML; returned only when "rawHtml" is among the requested scrape formats, for which the Search operation exposes no visible input',
151
+
'Unprocessed raw HTML; returned only when "rawHtml" is among the scrape formats requested via the hidden scrapeOptions input',
152
152
optional: true,
153
153
},
154
154
links: {
155
155
type: 'array',
156
156
description:
157
-
'Links found on the page; returned only when "links" is among the requested scrape formats, for which the Search operation exposes no visible input',
157
+
'Links found on the page; returned only when "links" is among the scrape formats requested via the hidden scrapeOptions input',
158
158
optional: true,
159
159
items: {type: 'string',description: 'URL found on the page'},
160
160
},
161
161
screenshot: {
162
162
type: 'string',
163
163
description:
164
-
'Screenshot URL (expires after 24 hours); returned only when "screenshot" is among the requested scrape formats, for which the Search operation exposes no visible input',
164
+
'Screenshot URL (expires after 24 hours); returned only when "screenshot" is among the scrape formats requested via the hidden scrapeOptions input',
0 commit comments