Markdown Features Example
This post demonstrates what Markdown is capable of.
Headers
H1 Header
H2 Header
H3 Header
Lists
Unordered
- Item 1
- Item 2
- Subitem 2.1
- Item 3
Ordered
- First thing
- Second thing
- Third thing
Code
Here is some inline code: const x = 10;.
And here is a code block:
function hello(name) {
console.log(`Hello, ${name}!`);
}
hello('World');
Blockquotes
“The best way to predict the future is to invent it.” – Alan Kay
Links & Images
(Add an image here if you have one)
Tables
| Header 1 | Header 2 |
| Data 1 | Data 2 |
| Data 3 | Data 4 |
Enjoy writing!