Markdown Guide
Welcome to the Markdown Example! This is a comprehensive showcase of Markdown's features.
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
Lists
Unordered List:
- Item 1
- Sub-item 1.1
- Sub-item 1.2
- Item 2
Ordered List:
- First item
- Second item
- Nested first item
- Nested second item
Emphasis
- Italic text
- Bold text
- Bold and italic text
Links and Images
Code Blocks
Inline code: var x = 10;
function greet(name) {
return `Hello, ${name}!`;
}
Blockquotes
This is a blockquote. It spans multiple lines.
Tables
| Header 1 | Header 2 | Header 3 | |----------|----------|----------| | Row 1 | Data | Data | | Row 2 | Data | Data |
Horizontal Rules
Task Lists
- [x] Task 1
- [ ] Task 2
- [ ] Task 3
HTML Support
Enjoy using Markdown!