Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Use hash symbols for headings. More hashes mean smaller headings.

Text Formatting

**Bold text** or __Bold text__
*Italic text* or _Italic text_
~~Strikethrough text~~
`Inline code`
***Bold and italic text***

Bold text or Bold text

Italic text or Italic text

Strikethrough text

Inline code

Bold and italic text

Lists

Unordered List:
- Item 1
- Item 2
  - Subitem 2.1
  - Subitem 2.2

Ordered List:
1. First item
2. Second item
3. Third item

Unordered List:

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2

Ordered List:

  1. First item
  2. Second item
  3. Third item

Blockquotes

> This is a blockquote
> It can span multiple lines

> Nested blockquotes
>> Like this

This is a blockquote

It can span multiple lines

Nested blockquotes

Like this

Code Blocks

```javascript
// Code block with syntax highlighting
function hello() {
  console.log("Hello world!");
}
```

    // Indented code block (4 spaces)
    function hello() {
      console.log("Hello world!");
    }
// Code block with syntax highlighting
function hello() {
  console.log("Hello world!");
}
    // Indented code block (4 spaces)
    function hello() {
      console.log("Hello world!");
    }

Tables

Basic Table

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |
Header 1Header 2
Cell 1Cell 2
Cell 3Cell 4
Use pipes and dashes to create tables. Header row is separated by a row of dashes.

Text Alignment

| Left-aligned | Center-aligned | Right-aligned |
|:------------ |:-------------:| -------------:|
| Left         | Center        | Right         |
Left-alignedCenter-alignedRight-aligned
LeftCenterRight

Column alignment using colons:

- :---- for left alignment (default)

- :----: for center alignment

- ----: for right alignment

Multi-row & Multi-column

| Name  | Category | Quantity |
|-------|----------|----------|
| Apples| Fruit    | 5        |
| Pasta | Grains   | 2        |
| Milk  | Dairy    | 1        |
NameCategoryQuantity
ApplesFruit5
PastaGrains2
MilkDairy1
You can add as many columns and rows as needed. Keep the pipes aligned for better readability in the source.

Horizontal Rule

---
or
***
or
___

or


or