# Convert a PDF to Markdown for Obsidian

**Use case:** 

PDFs into clean Markdown notes for your Obsidian vault — page markers for citations, structure preserved.

## Input

```json
{
  "fileUrls": [
    "https://arxiv.org/pdf/1706.03762"
  ],
  "outputFormat": "markdown",
  "pageMarkers": true,
  "maxPagesPerDoc": 500,
  "timeoutSecs": 60
}
```

## Output

```json
{
  "url": {
    "label": "Document",
    "format": "text"
  },
  "fileType": {
    "label": "Type",
    "format": "text"
  },
  "pages": {
    "label": "Pages",
    "format": "number"
  },
  "wordCount": {
    "label": "Words",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "markdown": {
    "label": "Markdown",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [PDF & DOCX to Markdown — Document Extractor for LLM/RAG](https://apify.com/fetchbase/document-to-markdown) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetchbase/document-to-markdown) to learn more, explore other use cases, and run it yourself.