Markdown Example File
Welcome to this Markdown example file! This document showcases many of the features available in Markdown.
Table of Contents
Headers
Markdown supports six levels of headers.
H1 Header
H2 Header
H3 Header
H4 Header
H5 Header
H6 Header
Text Formatting
- Italic: This text is italicized
- Bold: This text is bold
- Bold and Italic: This text is both bold and italic
Strikethrough:This text has a strikethrough
Lists
Unordered List
- Item 1
- Subitem 1
- Subitem 2
- Item 2
- Item 3
Ordered List
- First item
- Second item
- Subitem 1
- Subitem 2
- Third item
Links and Images
Links
Here is a link to OpenAI’s website.
Images
Here is an image of the Markdown logo:
Blockquotes
This is a blockquote. It is often used to highlight important information or quotes.
Another blockquote with a different style:
Nested blockquote.
Code Blocks
Inline Code
To include a piece of code within a sentence, use backticks: console.log('Hello, World!')
.
Fenced Code Blocks
You can create code blocks for multiple lines of code:
// JavaScript example
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));