Markdown Editor

Write, edit, and preview your Markdown code with this free online editor.

About Markdown

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Created by John Gruber in 2004, Markdown is now one of the world’s most popular markup languages.

Basic Syntax

  • Headings: # H1, ## H2, ### H3
  • Bold: **bold text**
  • Italic: *italicized text*
  • Blockquote: > blockquote
  • Ordered List: 1. First item
  • Unordered List: - First item
  • Code: `code`
  • Link: [title](https://www.example.com)
  • Image: ![alt text](image.jpg)

Common Questions

Is Markdown the same as HTML?

No, Markdown is not a replacement for HTML. It is a simpler syntax that can be converted to HTML. Many websites and applications use Markdown to make it easier for users to write formatted content.

Can I use HTML in Markdown?

Yes, you can use HTML tags in your Markdown text. This is useful for adding elements that are not supported by the standard Markdown syntax, such as tables or comments.

What is GitHub Flavored Markdown?

GitHub Flavored Markdown (GFM) is a superset of Markdown that includes additional features, such as tables, strikethrough, and task lists. This editor supports the standard Markdown syntax.

Related Tools