Headings
Use # symbols to create headings. More # = smaller heading.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
Heading 1
Heading 2
Heading 3
Heading 4
Text Formatting
Make your text bold, italic, or code style.
**Bold Text**
*Italic Text*
***Bold & Italic***
~~Strikethrough~~
`Inline Code`
Bold Text
Italic Text
Bold & Italic
Strikethrough
Inline Code
Lists
Create bullet lists with - or numbered lists with 1.
- Item 1
- Item 2
- Sub-item
1. First
2. Second
3. Third
- [ ] Unchecked task
- [x] Completed task
- Item 1
- Item 2
- Sub-item
- First
- Second
- Third
- Unchecked task
- Completed task
Links & Images
Links use [text](url) and images add ! in front.
[Visit Google](https://google.com)
[Link with title](https://google.com "Google's Homepage")


Code
Use backticks for inline code, or triple backticks for code blocks.
Use `console.log()` for debugging
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
```
Use console.log() for debugging
function greet(name) {
return `Hello, ${name}!`;
}
Blockquotes
Use > to create blockquotes. Great for callouts!
> This is a blockquote.
>
> It can span multiple lines.
>> Nested blockquotes too!
This is a blockquote.
It can span multiple lines.
Nested blockquotes too!
Tables
Create tables with pipes | and dashes -.
| Name | Age | City |
|---------|-----|----------|
| Alice | 25 | New York |
| Bob | 30 | London |
| Charlie | 35 | Paris |
| Name | Age | City |
|---|---|---|
| Alice | 25 | New York |
| Bob | 30 | London |
| Charlie | 35 | Paris |
Horizontal Rules
Create a dividing line with three dashes, asterisks, or underscores.
Text above
---
More text
***
Even more text
___
Final text
Text above
More text
Even more text
Final text
