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
* Additional extractors to be used by the scraper.
57
+
* These extractors will be added to the default set of extractors.
58
+
* Extractors are applied according to their priority.
59
+
* Higher priority extractors will run first.
60
+
* @default[]
61
+
*/
62
+
extraExtractors?:ExtractorPlugin[]
63
+
/**
64
+
* Additional post-processors to be used by the scraper.
65
+
* These post-processors will be added to the default set of post-processors.
66
+
* Post-processors are applied after all extractors have run.
67
+
* Post-processors are also applied according to their priority.
68
+
* Higher priority post-processors will run first.
69
+
* @default[]
70
+
*/
71
+
extraPostProcessors?:PostProcessorPlugin[]
72
+
/**
73
+
* Whether link scraping is enabled.
74
+
* @defaultfalse
75
+
*/
76
+
linksEnabled?:boolean
77
+
/**
78
+
* Logging level for the scraper.
79
+
* This controls the verbosity of logs produced by the scraper.
80
+
* @defaultLogLevel.Warn
81
+
*/
82
+
logLevel?:LogLevel
83
+
}
84
+
```
85
+
50
86
## Supported Sites
51
87
52
88
This library supports recipe extraction from various popular cooking websites. The scraper automatically detects the appropriate parser based on the URL.
0 commit comments