Markdown Live Editor

Edit markdown on the left and see the live preview on the right

# Welcome to Markdown Live Editor Edit your markdown on the left and see the **live preview** update instantly on the right! ## Text Formatting Make text **bold** or *italic* easily. - Use `**bold**` for **bold text** - Use `*italic*` or `_italic_` for *italic text* - Combine them: _**bold and italic**_ - Add ~~strikethrough~~ with `~~text~~` ## Headers # Heading 1 - Largest ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 - Smallest ## Lists ### Unordered Lists - Item one - Item two - Nested item - Another nested item - Item three ### Ordered Lists 1. First item 2. Second item 1. Sub-item A 2. Sub-item B 3. Third item ## Links and Images Create links: [Markdown Tools](https://markdown-tools.com) Add images: ![Logo](images/logo.png "Markdown Tools") ## Blockquotes > This is a blockquote. Perfect for highlighting important information or quotes. > > You can have multiple paragraphs in a blockquote. ## Tables | Feature | Status | Description | |---------|:------:|-------------| | Headers | ✅ | All 6 levels supported | | Lists | ✅ | Ordered and unordered | | Links | ✅ | Inline and reference style | | Code | ✅ | Inline and blocks | | Tables | ✅ | Fully aligned | ## Code Inline code: `const example = "code"` Code blocks with syntax highlighting: ```javascript function greet(name) { return `Hello, ${name}!`; } console.log(greet('World')); ``` ```python def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2) ``` ## Horizontal Rule --- Start typing to see your markdown come to life!