Skip to content

Markdown Preview

Write Markdown and see a live HTML preview. Supports headers, lists, code blocks, links, and images.

Markdown Preview

Write bold, italic, and strikethrough text.

Lists

  • First item
  • Second item
  • Third item

Code

Inline code and fenced blocks:

function greet(name) {
  return Hello, ${name}!;
}

Links & Images

Visit Botoi

Blockquotes work too.

That's the basics!

Markdown Syntax Reference

Markdown uses plain text characters to indicate formatting. # creates headings (one hash for H1, two for H2, up to six). **bold** for bold text, *italic* for italic. [text](url) creates links. ![alt](src) embeds images. Prefix lines with - or * for unordered lists, or 1. for ordered lists.

Code in Markdown

Wrap inline code with single backticks: `variable`. For code blocks, use triple backticks with an optional language identifier for syntax highlighting. Indent code blocks with four spaces as an alternative to fenced blocks. Most Markdown renderers (GitHub, GitLab, VS Code) support syntax highlighting for dozens of languages.

Where Markdown Is Used

GitHub uses Markdown for READMEs, issues, pull requests, and comments. Static site generators like Astro, Hugo, and Jekyll render Markdown files as HTML pages. Documentation platforms (Notion, Obsidian, Docusaurus) use Markdown as their primary authoring format. Most developer-facing tools expect Markdown for structured text input. Use our Word Counter to check the length of your Markdown content, or generate filler text with the Lorem Ipsum Generator when you need placeholder content for testing layouts.

CommonMark and Flavored Markdown

The original Markdown specification left some syntax ambiguous. CommonMark is a strict specification that resolves these ambiguities. GitHub Flavored Markdown (GFM) extends CommonMark with tables, task lists, strikethrough, and autolinked URLs. This preview tool supports the most common Markdown elements that work across all major implementations.

Frequently Asked Questions

Does this support GitHub Flavored Markdown?
This tool supports the most common GFM elements: headings, bold, italic, strikethrough, links, images, lists, code blocks, blockquotes, and horizontal rules. Tables and task lists are planned for a future update.
Can I export the HTML output?
The preview renders live as you type. To get the HTML source, inspect the preview panel in your browser's developer tools, or use a command-line tool like pandoc for production HTML conversion.