# Sample Markdown Document

> This is a sample Markdown file generated by FileDummy for testing parsers,
> static site generators, and documentation systems.

## Table of Contents

1. [Introduction](#introduction)
2. [Features](#features)
3. [Code Examples](#code-examples)
4. [Tables](#tables)
5. [Conclusion](#conclusion)

## Introduction

Markdown is a lightweight markup language that converts plain text into
structured HTML. It supports **bold**, *italic*, ~~strikethrough~~, and
`inline code` formatting.

## Features

- [x] Headers (H1-H6)
- [x] Lists (ordered and unordered)
- [x] Code blocks with syntax hints
- [x] Blockquotes
- [x] Links and images
- [x] Tables
- [ ] Task lists (GitHub Flavored)
- [ ] Footnotes

## Code Examples

```javascript
function greet(name) {
  console.log(`Hello, ${name}!`);
  return true;
}
```

```python
def greet(name: str) -> None:
    print(f"Hello, {name}!")
```

```sql
SELECT * FROM users WHERE active = true ORDER BY name ASC;
```

## Tables

| Format | Extension | MIME Type           |
|--------|-----------|---------------------|
| PDF    | .pdf      | application/pdf     |
| JSON   | .json     | application/json    |
| CSV    | .csv      | text/csv            |
| PNG    | .png      | image/png           |

## Links and Images

Visit [FileDummy](https://www.samplefiles.online) for more test files.

## Conclusion

This sample covers the most common Markdown features. Use it to verify
that your Markdown renderer correctly handles all standard syntax.

---
*Generated by FileDummy on 2026-06-21*
