Unformat.online
More tools
Clean Text
Strip smart quotes, zero-width characters, non-breaking spaces, and invisible Unicode from any pasted text.
Markdown Viewer
Live split-view editor and renderer — edit on the left, preview on the right.
Text Diff Checker
Compare two texts, JSON payloads, or config files and see exactly what changed, line by line.
Log File Viewer
Open multi-gigabyte log files instantly — chunked indexing and virtual scrolling handle 10GB+ files without freezing your tab.
FileSQL
Drop a CSV or JSON file and query it with SQL instantly — no upload, no server.
Format SQL
Format SQL for MySQL, PostgreSQL, BigQuery, T-SQL, and more — uppercase keywords, proper indentation.
Format JSON
Prettify or minify JSON. Auto-fixes single quotes, trailing commas, and unquoted keys.
Format YAML
Format and validate YAML. Catches indentation errors in Kubernetes, Docker Compose, and GitHub Actions files.
Format XML
Indent and pretty-print XML. Works with SOAP, RSS, Maven POM, Android manifests, and SVG.
JWT Debugger
Decode JWTs instantly — view all claims, check expiry, and see the algorithm. Token never leaves your browser.
Shredder
Remove EXIF, GPS, and author metadata from images and PDFs. Redact secrets from text and log files.
SSL Certificate Checker
Check any domain's SSL/TLS certificate — expiry, issuer, and Subject Alternative Names.
CronScope
Paste a cron schedule and see every run on a 12-month calendar. Never misread a cron expression again.
Regex Tester
Test regex patterns against sample text with live-highlighted matches, or pick from a library of ready-made patterns — no regex knowledge required.
Base64
Encode text or files to Base64, or decode Base64 strings and preview images inline.
URL Encode / Decode
Encode URLs or decode percent-encoded strings like %20, %3D, %26 — instantly.
UUID Generator
Bulk-generate cryptographically random v4 UUIDs using crypto.randomUUID(). Copy one or all at once.

What is Markdown?

Markdown is a lightweight markup language that lets you write plain text with simple symbols that automatically convert to formatted content — headings, bold, links, code blocks, and more.

A brief history

Markdown was created by John Gruber in 2004, with significant contributions from Aaron Swartz. The design goal was simple: make plain text as readable as possible while still producing valid HTML. Gruber drew inspiration from how people already formatted email — asterisks around words for emphasis, underscores for italics, dashes for lists.

Over time Markdown spread far beyond blogs. Today it is the default writing format on GitHub, Stack Overflow, Reddit, Notion, Obsidian, and hundreds of other tools. A standardized specification called CommonMark was published in 2014 to resolve ambiguities in the original spec.

Why people use it

  • Readable as plain text. A Markdown file is perfectly legible even before rendering. You don't need a special app to read it.
  • Fast to write. Typing **bold** is much faster than switching to a formatting toolbar.
  • Portable. A .md file is just plain text that works everywhere.
  • Version-control friendly. Because it's plain text, git diffs are clean and meaningful.
  • Converts to anything. Tools like Pandoc can turn Markdown into HTML, PDF, DOCX, ePub, and more.

Core syntax at a glance

You writeYou get
# Heading 1Large heading
## Heading 2Section heading
**bold**Bold text
*italic*Italic text
~~strikethrough~~Strikethrough
`inline code`Inline code
[link](url)Clickable hyperlink
![alt](url)Image
- itemBullet list item
1. itemNumbered list item
- [x] doneChecked task (GFM)
> quoteBlock quote
```code block```Fenced code with highlighting
--- Horizontal rule

See every syntax element in action on our interactive Markdown cheatsheet ↗.

Where is Markdown used?

GitHub & GitLab

README files, issues, pull request descriptions, wiki pages

Documentation

MkDocs, Docusaurus, VitePress, GitBook, and most doc platforms

Note-taking apps

Obsidian, Notion, Bear, Typora, Joplin

Static site generators

Jekyll, Hugo, Gatsby, Eleventy, Astro

Chat & collaboration

Slack, Discord, Microsoft Teams, Linear

Q&A platforms

Stack Overflow, Reddit

Markdown flavors

The original Markdown spec left some cases ambiguous. Several extended specifications have emerged to fill the gaps:

  • CommonMark — the standardized, unambiguous spec. Implemented by most modern tools.
  • GitHub Flavored Markdown (GFM) — adds tables, task lists, strikethrough, and autolinks. The most widely used extended flavor.
  • MultiMarkdown — adds footnotes, citations, and metadata blocks.
  • MDX — Markdown with JSX, used in React-based documentation sites.

Our Markdown Viewer supports GitHub Flavored Markdown — including tables, strikethrough, task lists, and autolinks — powered by remark-gfm.

Frequently asked questions

Is Markdown the same as HTML?

No. Markdown is a source format that compiles to HTML. You write simple symbols and a parser converts them to proper HTML tags. Markdown is designed for humans to write; HTML is designed for browsers to render.

Do I need software to use Markdown?

No — Markdown is plain text, so any text editor works. But a viewer or renderer lets you see the formatted output. You can use our free online Markdown Viewer to preview any .md file instantly in your browser.

Can Markdown files contain HTML?

Yes. Most Markdown parsers allow raw HTML inline. You can mix Markdown and HTML tags, though this is rarely necessary for everyday writing.

What file extension does Markdown use?

The most common extension is .md. You will also see .markdown and occasionally .mdown or .mkd. All are identical formats — the extension is just a convention.