📝 Markdown Sample
2024-06-24
Hello there, fellow coder! Welcome to this quirky little Markdown page. This page aims to demonstrate all the basic and some advanced Markdown syntaxes. So grab a cup of coffee, and let's dive into the realm of Markdown!
Headers
# This is an H1
## This is an H2
### This is an H3
#### This is an H4
##### This is an H5
###### This is an H6
This is an H1
This is an H2
This is an H3
This is an H4
This is an H5
This is an H6
Emphasis
*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_
This text will be italic This will also be italic
This text will be bold This will also be bold
You can combine them
Lists
Unordered List
* Item 1
* Item 2
* Item 2a
* Item 2b
- Item 1
- Item 2
- Item 2a
- Item 2b
Ordered List
1. Item 1
2. Item 2
3. Item 3
1. Item 3a
2. Item 3b
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
Images and Links

[GitHub](http://github.com)
Blockquotes
As Grace Hopper said:
> I always prefer to work with a **bunch of coders**. You know, it's much better than working with a bunch of zombies.
As Grace Hopper said:
I always prefer to work with a bunch of coders. You know, it's much better than working with a bunch of zombies.
Code and Syntax Highlighting
Inline `code` has `back-ticks around` it.
Inline code has back-ticks around it.
var s = "JavaScript syntax highlighting";
alert(s);
Tables
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
| Tables | Are | Cool |
|---|---|---|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Horizontal Rule
---
Strikethrough and Task List
~~Strikethrough~~
- [x] Task 1
- [ ] Task 2
- [ ] Task 3
Strikethrough
- [x] Task 1
- [ ] Task 2
- [ ] Task 3