# Sample Markdown Document
## Introduction
This is a sample markdown document to test the markdown to PDF conversion capabilities. It includes various markdown elements to ensure proper rendering.
### Text Formatting
Here are some examples of text formatting:
- **Bold text** for emphasis
- _Italic text_ for subtle emphasis
- ~~Strikethrough~~ for outdated content
- `inline code` for technical terms
### Lists
#### Unordered List
- First item
- Second item
- Nested item 1
- Nested item 2
- Third item
#### Ordered List
1. First step
2. Second step
1. Sub-step A
2. Sub-step B
3. Third step
### Code Blocks
Here's a sample code block in JavaScript:
```javascript
function greet(name) {
console.log(`Hello, ${name}!`);
return true;
}
```
### Tables
| Feature | Support | Notes |
| ------- | ------- | ------------------- |
| Headers | ✓ | Multiple levels |
| Lists | ✓ | Nested support |
| Code | ✓ | Syntax highlighting |
| Tables | ✓ | Basic formatting |
### Blockquotes
> This is a blockquote.
> It can span multiple lines.
>
> > And can be nested.
### Links and Images
[Visit OpenAI](https://www.openai.com)

### Task Lists
- [x] Create headers
- [x] Add text formatting
- [x] Include lists
- [x] Add code blocks
- [ ] Review document
---
_End of sample document_