Examples

Real before-and-after examples. See what your converted documents will look like.

Word Document → Markdown

Input
A .docx file with:

• Heading 1: "Annual Report"
• Heading 2: "Q3 Results"
• Bold: $2.3M revenue
• Italic: record growth
• Bullet list: 3 items
• Table: 4 columns, 5 rows
Markdown Output
# Annual Report

## Q3 Results

**$2.3M** in revenue — *record growth* quarter.

- North America: up 12%
- Europe: up 8%
- Asia-Pacific: up 15%

| Region | Q3 Rev | Growth |
| ------ | ------ | ------ |
| NA | $1.2M | 12% |
| EU | $0.7M | 8% |
| APAC | $0.4M | 15% |

CSV Data → Markdown Table

Input
CSV file:

Name,Role,Department,Start Date
Alice Chen,Engineer,Platform,2024-01-15
Bob Smith,Designer,Product,2024-03-01
Carol Lee,PM,Platform,2024-06-10
Markdown Output
| Name | Role | Department | Start Date |
| ---- | ---- | ---------- | ---------- |
| Alice Chen | Engineer | Platform | 2024-01-15 |
| Bob Smith | Designer | Product | 2024-03-01 |
| Carol Lee | PM | Platform | 2024-06-10 |

HTML Page → Markdown

Input
<h1>Getting Started</h1>
<p>Welcome to our <b>platform</b>.</p>
<h2>Prerequisites</h2>
<ul>
<li>Node.js 18+</li>
<li>npm or yarn</li>
</ul>
Markdown Output
# Getting Started

Welcome to our **platform**.

## Prerequisites

- Node.js 18+
- npm or yarn

Research Paper (PDF) → Markdown

Input
A 12-page academic PDF with:

• Title and abstract
• 6 sections with subsections
• 4 data tables
• 45 citations
• Mathematical notation
Markdown Output
# Title of Paper

## Abstract

[Extracted text...]

## Introduction

[Extracted text with paragraph breaks...]

## Methodology

### Data Collection

[Text content...]

## Results

| Metric | Control | Test |
| ------ | ------- | ---- |
| ... |

Meeting Notes → Markdown

Input
Google Docs meeting notes:

• Date: July 31, 2026
• Attendees underlined
• Action items bolded
• Decisions in a table
• Next steps bulleted
Markdown Output
# Project Sync — July 31, 2026

**Attendees:** Alice, Bob, Carol

## Decisions

| Decision | Owner | Due |
| -------- | ----- | --- |
| Migrate to v2 API | Alice | Aug 7 |

## Action Items

- [ ] Alice: Update API docs
- [ ] Bob: Deploy staging env

Blog Post Draft → Markdown

Input
Word document blog draft:

• Title: "Why Markdown Matters"
• 1200 words
• 3 H2 sections
• 2 code blocks
• 8 inline links
• 1 comparison table
Markdown Output
# Why Markdown Matters

Markdown has become the universal format...

## The Problem with Rich Text

Most tools export to...

```javascript
// Example code block
```

## How Markdown Solves It

| Feature | Rich Text | Markdown |
| ------- | --------- | -------- |
| Size | 250KB | 8KB |

Try it yourself

Upload your own file and see the result instantly.

Go to Converter →