# Migrate Blog Posts to Markdown for New CMS

**Use case:** 

Extract and convert existing blog posts from an old website into a standardized Markdown format, streamlining the content migration process to a new CMS or stat

## Input

```json
{
  "startUrls": [
    {
      "url": "https://blog.hubspot.com/marketing/blog-post-seo"
    },
    {
      "url": "https://blog.hubspot.com/marketing/what-is-marketing"
    },
    {
      "url": "https://blog.hubspot.com/marketing/content-marketing"
    }
  ],
  "includeSelectors": [
    "article.blog-post__body-wrapper"
  ],
  "excludeSelectors": [
    ".related-posts",
    ".comments",
    ".social-share-buttons"
  ],
  "useJavaScript": false,
  "headingStyle": "ATX",
  "stripTags": [
    "script",
    "style"
  ],
  "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.