Markdown Preview

Write Markdown and see live HTML preview

Markdown

Preview

Preview will appear here...

Quick Reference

# H1 ## H2 ### H3
**bold** *italic* ~~strike~~
[link](url) ![img](url)

What is Markdown?

Markdown is a lightweight markup language created by John Gruber in 2004. It uses simple plain text formatting that converts to HTML. Markdown is widely used for README files, documentation, blog posts, and static site generators.

Markdown Syntax Cheatsheet

# Heading 1β†’ <h1>
## Heading 2β†’ <h2>
**bold**β†’ <strong>
*italic*β†’ <em>
[link](url)β†’ <a href>
![alt](image.jpg)β†’ <img>
`code`β†’ <code>
- list item→ <ul><li>
1. ordered→ <ol><li>
> blockquote→ <blockquote>

Features

⚑

Live Preview

See your Markdown rendered in real-time as you type

πŸ“±

Split View

Edit and preview side-by-side on larger screens

πŸ“€

Export HTML

Download or copy the generated HTML code

Popular Use Cases

πŸ“

GitHub README

Preview your project documentation before pushing

πŸ“š

Documentation

Write technical docs with simple formatting

✍️

Blog Posts

Draft posts for Jekyll, Hugo, or other static sites

πŸ“‹

Notes

Quick formatted notes with headers, lists, and links

FAQ

What is Markdown used for?

Markdown is used for documentation, README files, blog posts, forum comments, and anywhere you need formatted text from plain text input.

Is this compatible with GitHub Markdown?

Yes! Our previewer supports GitHub Flavored Markdown (GFM) including tables, task lists, and fenced code blocks.