Skip to main content

Markdown Preview

Real-time Markdown editor and previewer with syntax highlighting.

Markdown Input

Preview

Hello World

Start typing markdown here...

Share:

Writing for the Web, Simplified

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Created by John Gruber in 2004, it is now one of the world's most popular markup languages.

An old-school typewriter with a modern tablet screen coming out of the paper slot. Represents the blend of simple text and rich output.An old-school typewriter with a modern tablet screen coming out of the paper slot. Represents the blend of simple text and rich output.

The Philosophy: Readability

The overriding design goal for Markdown's formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it's been marked up with tags or formatting instructions. Read the original Project Description.

Cheat Sheet

Headers

# H1
## H2
### H3

Emphasis

*Italic*
**Bold**
~~Strikethrough~~

Lists

- Item 1
- Item 2
1. Ordered 1
2. Ordered 2

Code

`inline code`
```
block code
```
A split screen showing raw code on one side (messy, complex) and a beautiful, clean document on the other side (organized, readable).A split screen showing raw code on one side (messy, complex) and a beautiful, clean document on the other side (organized, readable).

Why Use Markdown?

  • Portable: You can open a Markdown file in any text editor.
  • Human-Readable: Even without rendering, you can understand the structure.
  • Ubiquitous: Used by GitHub, Reddit, Stack Overflow, and many CMS platforms.