Markdown
1. Headings
Syntax:
# Heading 1
## Heading 2
### Heading 3
Preview:
Heading 1
Heading 2
Heading 3
2. Emphasis
Syntax:
_italic_ or _italic_
**bold** or **bold**
**_bold italic_** or **_bold italic_**
Preview:
italic or italic
bold or bold
bold italic or bold italic
3. Lists
Syntax (Unordered):
- Item 1
- Item 2
- Subitem
* Item 3
Preview:
- Item 1
- Item 2
- Subitem
- Item 3
Syntax (Ordered):
1. First item
2. Second item
1. Subitem
Preview:
- First item
- Second item
- Subitem
4. Links
Syntax:
[Link Text](https://example.com)
Preview:
Link Text
5. Images
Syntax:

Preview:
6. Blockquotes
Syntax:
> This is a blockquote.
>
> > Nested blockquote.
Preview:
This is a blockquote.
Nested blockquote.
7. Code
Syntax (Inline):
Here is some `inline code`.
Preview:
Here is some inline code.
Syntax (Block):
js // Code goes here
Preview:
// Code goes here
8. Horizontal Rule
Syntax:
---
Preview:
9. Tables
Syntax:
| Header 1 | Header 2 |
| -------- | -------- |
| Row 1 | Row 1 |
| Row 2 | Row 2 |
Preview:
| Header 1 | Header 2 |
|---|---|
| Row 1 | Row 1 |
| Row 2 | Row 2 |
10. Task Lists
Syntax:
- [x] Task 1
- [ ] Task 2
Preview:
- Task 1
- Task 2
11. Escaping Characters
Syntax:
\*Not italic\*
Preview:
*Not italic*
12. Footnotes (if supported)
Syntax:
Here is a footnote.[^1]
[^1]: This is the footnote.
Preview:
Here is a footnote.1
13. Strikethrough
Syntax:
~~This text is struck through~~
Preview:
This text is struck through
14. Emoji (if supported)
Syntax:
:smile: :rocket: :tada:
Preview:
😄 🚀 🎉
15. HTML in Markdown
Syntax:
<b>Bold HTML</b> <br />
<img src="https://example.com/image.png" width="100" />
Preview:
Bold HTML
16. Reference-style Links
Syntax:
[Google][1]
[1]: https://www.google.com
Preview:
Google
Resources
Happy writing! 📝
Footnotes
-
This is the footnote. ↩