# CrawlerRunConfig Parameters Documentation ## Content Processing Parameters | Parameter | Type | Default | Description | |-----------|------|---------|-------------| | `word_count_threshold` | int | 200 | Minimum word count threshold before processing content | | `extraction_strategy` | ExtractionStrategy | None | Strategy to extract structured data from crawled pages. When None, uses NoExtractionStrategy | | `chunking_strategy` | ChunkingStrategy | RegexChunking() | Strategy to chunk content before extraction | | `markdown_generator` | MarkdownGenerationStrategy | None | Strategy for generating markdown from extracted content | | `content_filter` | RelevantContentFilter | None | Optional filter to prune irrelevant content | | `only_text` | bool | False | If True, attempt to extract text-only content where applicable | | `css_selector` | str | None | CSS selector to extract a specific portion of the page | | `excluded_tags` | list[str] | [] | List of HTML tags to exclude from processing | | `keep_data_attributes` | bool | False | If True, retain `data-*` attributes while removing unwanted attributes | | `remove_forms` | bool | False | If True, remove all `