Welcome to Markdown Editor
A powerful editor with live preview, syntax highlighting, and a rich toolbar.
Features
- Live preview with GitHub-style rendering
- Italic, bold,
strikethrough inline codeand highlighted code blocks- Links and images
- Tables, lists, task lists
- Export as
.mdor.html - Outline navigation (TOC)
Code with highlighting
function greet(name) {
const msg = `Hello, ${name}!`;
console.log(msg);
return msg;
}
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
yield a
a, b = b, a + b
SELECT name, COUNT(*) as count
FROM users
WHERE active = 1
GROUP BY name
HAVING count > 10
ORDER BY count DESC;
Tasks
- Install highlight.js
- Add TOC navigation
- Share your document
Table
| Feature | Status | Notes |
|---|---|---|
| Preview | Ready | Real-time |
| Export | Ready | MD + HTML |
| TOC | Ready | Click to jump |
Tip: use the toolbar above to format your text quickly. Try keyboard shortcuts: Ctrl+B, Ctrl+I, Ctrl+K, Ctrl+`.
Từ: 195
Ký tự: 1130
Thời gian đọc: ~1 min
Tiêu đề: 5
Đã tự lưu