Learn how to write beautiful blog posts using Markdown syntax.
# Header 1
## Header 2
### Header 3
#### Header 4
**Bold text**
*Italic text*
~~Strikethrough~~
`Inline code`
- Unordered list item
- Another item
- Nested item
1. Ordered list item
2. Another item
[Link text](https://example.com)

```python
def hello_world():
print("Hello, World!")
```
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
```
> This is a blockquote
> It can span multiple lines
| Column 1 | Column 2 |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
---
- [x] Completed task
- [ ] Incomplete task
Line 1
Line 2 (two spaces at end of line 1)