Welcome to Markdown Viewer!
This is a Markdown showcase to demonstrate how Markdown looks in your viewer.
Table of Contents
- Headings
- Text Formatting
- Lists
- Links and Images
- Code
- Tables
- Blockquotes
- Horizontal Rules
Headings
Heading Level 1
Heading Level 2
Heading Level 3
Heading Level 4
Heading Level 5
Heading Level 6
Text Formatting
- Bold
- Italic
- Bold and Italic
Strikethrough
Inline Text Example
This is a sentence with inline code
and bold text.
Lists
Ordered List
- Item 1
- Item 2
- Sub-item 2.1
- Sub-item 2.2
- Item 3
Unordered List
Links and Images
Links
OpenAI
Images

Code
Inline Code
Here's some inline code
.
Code Block
// JavaScript example
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("Markdown Viewer"));