Markdown Editor
Write Markdown with live preview. Supports GitHub Flavored Markdown, tables, and code blocks.
Markdown Cheat Sheet
Basic Formatting
**bold**Bold*italic*Italic~~strike~~Strikethrough`code`Inline codeHeadings
# H1Heading 1## H2Heading 2### H3Heading 3Links & Images
[text](url)LinkImageLists
- itemBullet list1. itemNumbered list- [ ] taskTask listBlocks
> quoteBlockquote---Horizontal rule```code```Code blockTables
| Col 1 | Col 2 | |-------|-------| | A | B |
Frequently Asked Questions
What is Markdown?
Markdown is a lightweight markup language created by John Gruber. It lets you write formatted text using simple, readable syntax that can be converted to HTML. It's widely used for documentation, README files, blog posts, and more.
What is GitHub Flavored Markdown (GFM)?
GFM is GitHub's extended version of Markdown that adds features like tables, task lists, strikethrough text, fenced code blocks, and automatic URL linking. This editor supports all GFM features.
Is my content saved?
Yes, your content is automatically saved to your browser's local storage. This means your work persists even if you close the browser. However, the data stays on your device - it's never uploaded to any server.
Can I export to HTML?
Yes! Click the "Copy HTML" button to copy the rendered HTML to your clipboard. You can also download your Markdown as a .md file for use in other applications.