# Wikipedia Article Scraper for Plain Text

**Use case:** 

Crawl Wikipedia to extract plain text from up to 20 articles. Capture content in clean Markdown or plain text format.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://en.wikipedia.org/wiki/Machine_learning"
    }
  ],
  "crawlScope": "same-domain",
  "maxPagesToCrawl": 20,
  "saveMarkdown": true,
  "saveText": true,
  "saveHtml": false,
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "Page URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "wordCount": {
    "label": "Word count",
    "format": "integer"
  },
  "metaDescription": {
    "label": "Meta description",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Website to Markdown Crawler for LLM & RAG](https://apify.com/logiover/website-text-markdown-crawler) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/website-text-markdown-crawler) to learn more, explore other use cases, and run it yourself.