GitHub Flavored Markdown

Markdown ↔ HTML Converter

Convert Markdown to HTML or HTML to Markdown instantly with live preview. Supports GFM, tables, and code blocks.

Live Preview

See rendered output as you type

GFM Support

Tables, task lists, strikethrough

Code Blocks

Fenced code with highlighting

Bidirectional

MD→HTML and HTML→MD

What is Markdown?

Markdown is a lightweight markup language created by John Gruber in 2004. It allows you to write formatted text using plain text syntax that's easy to read and write.

Common uses include:

  • README files on GitHub
  • Documentation and wikis
  • Blog posts and articles
  • Note-taking applications
  • Static site generators

Markdown Syntax Quick Reference

# Heading 1
**bold**
## Heading 2
*italic*
- List item
[Link](url)
1. Numbered
![Image](url)
> Blockquote
`inline code`
```code block```
--- (horizontal rule)

Related Tools