# Crawl PyTorch Documentation to Markdown

**Use case:** 

Crawl the PyTorch docs to extract clean Markdown and plain text. Get structured content ready for LLM training and RAG applications.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://pytorch.org/docs/stable/index.html"
    }
  ],
  "crawlScope": "same-domain",
  "maxPagesToCrawl": 200,
  "saveMarkdown": true,
  "saveText": true,
  "saveHtml": false,
  "maxConcurrency": 10,
  "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.