Headings

Use # to define headings (similar to <h1> to <h6> in HTML).

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

Bold, Italics, and Strikethrough

**Bold Text**  
*Italic Text*  
~~Strikethrough~~  

Lists

  • Unordered List: Use -, +, or *
  • Ordered List: Use numbers
- Item 1
- Item 2  
  - Sub-item  
  - Sub-item  
 
1. First item  
2. Second item  
   1. Sub-item  
   2. Sub-item  

Links and Images

[GitHub](https://github.com/)
 
![Alt Text](https://example.com/image.png)

Blockquotes

Used for quoting text.

> This is a blockquote.
>> Nested blockquote.

Code Blocks & Inline Code

  • Inline Code: Use backticks (`) → code
  • Code Block: Use triple backticks (```) or indent with 4 spaces

Tables (Extended Markdown)

| Name  | Age| Role      |
|-------|----|-----------|
| Alice | 25 | Developer |
| Bob   | 30 | Designer  |

Task Lists (GitHub Flavored Markdown - GFM)

- [x] Task 1 (Done)  
- [ ] Task 2 (Pending)  
- [ ] Task 3 (Pending)