# Aggregate News Articles to Markdown for AI Feeds

**Use case:** 

Scrape and convert daily news articles from various sources into a standardized Markdown format, creating a clean dataset for AI-powered news aggregation or sen

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.nytimes.com/section/world"
    },
    {
      "url": "https://www.theguardian.com/world"
    },
    {
      "url": "https://www.reuters.com/world/"
    }
  ],
  "includeSelectors": [
    "article",
    ".article-body",
    ".story-content"
  ],
  "excludeSelectors": [
    "nav",
    "footer",
    ".ad-unit",
    ".comment-section",
    ".related-stories"
  ],
  "useJavaScript": true,
  "headingStyle": "ATX",
  "stripTags": [
    "script",
    "style",
    "iframe",
    "figure"
  ],
  "auth": {},
  "timeout": 30
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Page Title"
  },
  "markdown_length": {
    "label": "Markdown Size"
  },
  "success": {
    "label": "Status"
  }
}
```

## About this Actor

This example demonstrates how to use [Markdownify MCP Server](https://apify.com/crawlerbros/markdownify-mcp-server) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/markdownify-mcp-server) to learn more, explore other use cases, and run it yourself.