✍️ TEXT & WRITING
Markdown Preview
Write on the left, see rendered HTML on the right. Supports GFM tables, fenced code blocks, links, images, and more.
177 words · ~1 min read
EDITOR
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
PREVIEW
Markdown Preview
Welcome to the Markdown Preview tool — a split-pane writing studio.
Features
This tool renders GitHub Flavored Markdown in real time. Here's what it supports:
Inline Formatting
You can write bold text, italic text, strikethrough, and inline code all on the same line. You can also combine them: bold italic.
Links and Images
Visit mohdsakib.vercel.app for more tools.
Blockquote
"The scariest moment is always just before you start."
— Stephen King
Code Block
function parseMarkdown(input) {
return input
.replace(/^# (.+)$/gm, '<h1>$1</h1>')
.replace(/**(.+?)**/g, '<strong>$1</strong>');
}
Lists
Unordered:
- Writing tools
- Developer utilities
- Calculators
- Productivity apps
Ordered:
- Write your markdown
- See the live preview
- Copy or download
Horizontal Rule
Table
| Syntax | Description | Example |
|---|---|---|
# H1 | Heading level 1 | Big title |
<strong>bold</strong> | Bold text | bold |
<em>italic</em> | Italic text | italic |
`code` | Inline code | code |
> quote | Blockquote | > quote |
Start editing this document or paste your own markdown on the left.