export const markdownContent = `
|
# Heading 1
|
|
## Heading 2
|
|
### Heading 3
|
|
#### Heading 4
|
|
##### Heading 5
|
|
###### Heading 6
|
|
# Basic markdown content.
|
|
Should support **bold**, *italic*, and ~~strikethrough~~.
|
Should support [links](https://www.google.com).
|
Should support inline \`code\` blocks.
|
|
# Number list
|
|
1. First item
|
2. Second item
|
3. Third item
|
|
# Bullet list
|
|
- First item
|
- Second item
|
- Third item
|
|
# Link
|
|
[Google](https://www.google.com)
|
|
# Image
|
|

|
|
# Table
|
|
| Column 1 | Column 2 | Column 3 |
|
| -------- | -------- | -------- |
|
| Cell 1 | Cell 2 | Cell 3 |
|
| Cell 4 | Cell 5 | Cell 6 |
|
| Cell 7 | Cell 8 | Cell 9 |
|
|
# Code
|
|
\`\`\`JavaScript
|
const code = "code"
|
\`\`\`
|
|
# Blockquote
|
|
> This is a blockquote.
|
|
# Horizontal rule
|
|
---
|
`
|