# Webpage to Markdown Converter for LLMs

**Use case:** 

Convert webpage content into clean markdown format. This task extracts main readable text, omitting ads and layout noise.

## Input

```json
{
  "urls": [
    "https://en.wikipedia.org/wiki/Web_scraping"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "content": {
    "label": "Markdown",
    "format": "string"
  }
}
```

## About this Actor

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