# 🚀 Complete Markdown Example ## 📋 Text Formatting This is a **bold** text, *italic*, ~~strikethrough~~, and `inline code`. ## 📊 Lists ### Unordered - Item 1 - Item 2 - Nested Item 2.1 - Nested Item 2.2 - Deep Nested 2.2.1 ### Ordered 1. First 2. Second 1. Nested Second 1 2. Nested Second 2 ### Task List - [x] Complete parser - [ ] Add tests - [ ] Write documentation ## 🏗️ Code Blocks ```javascript function helloWorld() { console.log("Hello Markdown!"); return 42; } ``` ## 📦 Blockquote > This is a blockquote. > It can span multiple lines. > > And even be nested! ## 🏆 Tables | Syntax | Description | Tested | |-------------|-------------|--------| | Header | Title | ✅ | | Paragraph | Text | ❌ | | `code` | Inline | ⚠️ | ## 🎨 Horizontal Rules --- *** ___ ## 🔗 Links & Images [My GitHub](https://github.com/ferhatgnlts)  ## 😄 Emojis Built-in: :smile: :thumbsup: :heart: Custom: :coffee: :warning: :computer: ## 🛠️ Advanced ### Escaped Chars \\*Not italic\\*, \\`not code\\` ### Mixed Formatting **Bold *italic* combo** inside a [link](https://example.com) with `code`.