What is Markdown?
Markdown is a lightweight plain-text formatting language created by John Gruber in 2004. It uses simple symbols like #, *, and `` ` `` to mark up headings, bold, italics, links, lists, and code, and converts cleanly to HTML. It is the standard format for README files, GitHub issues, blog posts, and AI chat output.
What is GitHub Flavored Markdown?
GitHub Flavored Markdown (GFM) is the dialect of Markdown used by GitHub. On top of standard Markdown it adds tables, fenced code blocks with language tags, task lists ([ ] and [x]), strikethrough with ~~tildes~~, autolinks, and emoji shortcodes. This preview tool renders all of those.
Is my Markdown stored or sent to a server?
No. The Markdown preview runs entirely in your browser. Nothing you type is uploaded, logged, or stored, which makes the tool safe for drafting confidential README files, internal docs, or unpublished blog posts.
Can I export the preview as HTML?
Yes. Use Copy as HTML to copy the rendered HTML markup to your clipboard, Copy as Rich Text to paste formatted output into Google Docs or Notion, or Download .html to save a complete standalone HTML file. You can also download the original Markdown source as a .md file.
Does this support code syntax highlighting?
Yes. Fenced code blocks with a language tag (for example ```js or ```python) render with a language badge and a monospace code block. The output HTML keeps the language as a CSS class on the <code> element so you can style it with any highlight theme on export.