# Extract Help Center Articles to Markdown for RAG & LLMs

**Use case:** 

Automatically crawl and convert help center articles, Zendesk, and documentation sites into clean Markdown for AI chatbots and LLM context windows.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://docs.apify.com/"
    }
  ],
  "maxPagesPerCrawl": 50,
  "removeBoilerplate": true
}
```

## Output

```json
{
  "url": {
    "label": "Article URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "markdown": {
    "label": "Markdown Content",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [HelpDesk-to-RAG Markdown Scraper](https://apify.com/neighborly_coach/helpdesk-to-rag-markdown-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neighborly_coach/helpdesk-to-rag-markdown-scraper) to learn more, explore other use cases, and run it yourself.