# 👋 Welcome to Markdown Editor
Start writing your markdown content here! Below are some examples to help you get started.
---
## ✨ Basic Formatting
**Bold text**
*Italic text*
---
## 📋 Lists
- Item 1
- Item 2
- Nested item
1. First item
2. Second item
---
## 💻 Code
Inline `code` example:
```javascript
function hello() {
console.log("Hello, world!");
}
```
---
## 🔗 Links and 🖼️ Images
[Visit GitHub](https://github.com)

---
## 💬 Blockquotes
> "This is a blockquote.
> It can span multiple lines."
---
## 📊 Tables
|----------|------------------|
| Header 1 | Example content |
| Header 2 | More examples |
---
Happy writing! 🎉