Markdown Editor
B
I
S
code
H1
H2
H3
ul
ol
task
quote
{ }
hr
link
img
table
Sync Scroll
Wrap
Dark
Midnight
Sepia
Light
Export HTML
Download .md
Markdown
# Welcome to Markdown Editor A **real-time** markdown editor with live preview. Start typing on the left and see the rendered output on the right. ## Features - **Bold**, *italic*, ~~strikethrough~~, and `inline code` - Headings (H1 through H6) - Ordered and unordered lists - Task lists with checkboxes - Code blocks with syntax display - Blockquotes, horizontal rules - Tables, links, and images - Toolbar buttons and keyboard shortcuts - Synchronized scrolling - 4 color themes - Export to HTML or download as .md ## Code Example ```javascript function fibonacci(n) { if (n <= 1) return n; return fibonacci(n - 1) + fibonacci(n - 2); } console.log(fibonacci(10)); // 55 ``` ## Blockquote > "The only way to do great work is to love what you do." > — Steve Jobs ## Task List - [x] Build the editor - [x] Add live preview - [x] Toolbar with formatting buttons - [ ] Add more features - [ ] Share with the world ## Table | Feature | Status | Priority | |---------------|-----------|----------| | Live preview | Done | High | | Sync scroll | Done | Medium | | Themes | Done | Low | | Export | Done | Medium | ## Links Visit [GitHub](https://github.com) for more projects. --- *Start editing to see the magic happen!*
Preview
Lines:
0
Words:
0
Chars:
0
Cursor:
1:1