Headings
Markdown
# Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6
Complete guide to Markdown formatting with examples
# Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6
**Bold text** *Italic text* ***Bold and italic*** ~~Strikethrough~~ `Inline code`
Bold text
Italic text
Bold and italic
Strikethrough
Inline code
- Item 1 - Item 2 - Nested item - Another nested - Item 3
1. First item 2. Second item 3. Third item 1. Nested item 2. Another nested
[Link text](https://example.com) [Link with title](https://example.com "Title")  
```javascript
function greet(name) {
console.log(`Hello, ${name}!`);
}
```
function greet(name) {
console.log(`Hello, ${name}!`);
}
| Header 1 | Header 2 | Header 3 | |----------|----------|----------| | Cell 1 | Cell 2 | Cell 3 | | Cell 4 | Cell 5 | Cell 6 |
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
> This is a blockquote > It can span multiple lines > > And have paragraphs
This is a blockquote
It can span multiple lines
And have paragraphs
--- or *** or ___
| Element | Syntax |
|---|---|
| Heading | # H1 ## H2 ### H3 |
| Bold | **bold text** |
| Italic | *italic text* |
| Link | [title](https://url.com) |
| Image |  |
| Code | `code` |
| Code Block | ```language``` |
| Unordered List | - item |
| Ordered List | 1. item |
| Blockquote | > quote |
| Horizontal Rule | --- |