Markdown Editor
Write Markdown with a live preview — supports GFM (GitHub Flavoured Markdown) with tables and code blocks.
About Markdown
Markdown is a lightweight markup language created by John Gruber in 2004, designed to be readable as plain text while converting cleanly to HTML. GitHub Flavoured Markdown (GFM) extends the original spec with tables, task lists, strikethrough, fenced code blocks with syntax highlighting, and @mentions. It is used in GitHub READMEs, issue comments, pull requests, Notion, Slack, Discord, and countless developer tools.
FAQ
What is the difference between CommonMark and GFM?
CommonMark is a strict, unambiguous specification of the original Markdown that resolves edge cases inconsistently handled by different parsers. GitHub Flavoured Markdown (GFM) is an extension of CommonMark adding tables, task lists (- [x]), strikethrough (~~text~~), autolinks, and disallowing certain HTML. Most modern tools support at least CommonMark; GitHub, GitLab, and many others support GFM.