Markdown Preview

Updated July 2026

Write Markdown and watch it turn into formatted HTML as you type. Use it to draft README files, notes, comments or documentation — then copy the clean HTML or view the raw source. Everything runs privately in your browser.

Type Markdown on the left and see the formatted result on the right, instantly. You can also copy the generated HTML. Everything runs in your browser.

How this Markdown preview works

Markdown is a lightweight way to format plain text. Instead of clicking toolbar buttons, you add small marks — a # for a heading, ** around words for bold — and a converter renders them as HTML. This page does that conversion live in your browser: every keystroke in the editor is parsed and shown as formatted output on the right.

The parser handles the most common Markdown: headings (# to ######), bold and italic, inline code and fenced code blocks, links and images, bulleted and numbered lists, blockquotes, horizontal rules, paragraphs and line breaks. To keep things safe, all text is HTML-escaped before any formatting is applied, so anything you type is treated as content — raw HTML or scripts in your input cannot run in the preview.

Worked example: the Markdown # Hello on its own line becomes <h1>Hello</h1>, and **bold** and *italic* becomes <strong>bold</strong> and <em>italic</em>. The Preview shows the rendered result, while Show raw HTML reveals that exact markup.

Reference note: this is a sensible Markdown subset for quick previews, not a full CommonMark implementation. Nested lists, tables and inline HTML are intentionally not supported so the output stays predictable and safe.

Markdown cheat-sheet

SyntaxResult
# HeadingTop-level heading (use ## … ###### for smaller)
**bold** or __bold__bold
*italic* or _italic_italic
`code`inline code
```
code block
```
A fenced code block
[text](https://url)A link
![alt](https://img.png)An image
- item / * itemBulleted list item
1. itemNumbered list item
> quoteBlockquote
---Horizontal rule

Frequently asked questions

What is Markdown?
Markdown is a lightweight plain-text formatting syntax. You write simple marks like # for headings or ** for bold, and a converter turns them into formatted HTML. It is widely used for README files, notes and documentation because it stays readable as plain text.
How do I write bold / italic / headings in Markdown?
Wrap text in **double asterisks** (or __underscores__) for bold, and *single* asterisks or underscores for italic. For headings, start a line with one to six hash marks: # is the largest and ###### the smallest.
How do I add a link or image in Markdown?
A link is [link text](https://example.com). An image is the same with a leading exclamation mark: ![alt text](https://example.com/image.png).
How do I make a list in Markdown?
For a bulleted list, begin each line with a dash or asterisk and a space (- item). For a numbered list, begin each line with a number, a period and a space (1. item). Put each item on its own line.
Can I get the HTML output?
Yes — click Copy HTML to copy the generated source to your clipboard, or use Show raw HTML to view and select the markup, then paste it anywhere that accepts HTML.
Is my text uploaded?
No. The conversion runs entirely in your browser. Nothing you type is sent to a server or stored, so your notes and drafts stay private on your device.
⚡ Markdown Preview — by larely ↗

Related tools

Subnet Calculator

IPv4 CIDR subnet calculator: network, broadcast, mask and host range.

PX to REM Converter

Convert between px, rem, em and pt for CSS at any base font size.

Hash Generator

Generate SHA-256, SHA-1, SHA-384 and SHA-512 hashes in your browser.

JWT Decoder

Decode a JSON Web Token's header and payload .

Sort Text Lines

Sort, deduplicate, reverse, shuffle and clean a list of lines.

JSON to CSV Converter

Convert a JSON array to CSV and CSV back to JSON.

URL Encoder / Decoder

Percent-encode and decode text, and parse a URL into its parts.

Word Frequency Counter

Find the most-used words and keyword density in any text.

Image to Base64 Converter

Encode an image to a Base64 data URI for HTML or CSS, in your browser.

What Is My Browser?

Detect your browser, OS, screen resolution, window size and more.

Chmod Calculator

Convert file permissions between octal , symbolic and the chmod command.

Password Strength Checker

Estimate password entropy and crack time, entirely in your browser.

Browse all 251 free tools →