Markdown Preview

Write markdown and see the live preview instantly — supports GitHub Flavored Markdown, tables, and code highlighting.

Welcome to Markdown Preview

This is a live preview of your markdown content.

Features

  • Real-time preview

  • Supports all common markdown syntax

  • Dark mode friendly
  • Code Example

    const greeting = "Hello, World!";
    console.log(greeting);

    Links and Images

    Visit Mizakii Tools

    This is a blockquote. It can span multiple lines.


  • First item

  • Second item

  • Third item
  • Enjoy writing! 🎉

    Markdown Syntax Quick Reference

    # Heading 1H1 — largest heading
    ## Heading 2H2 — section heading
    **bold text**Bold text
    *italic text*Italic text
    [Link text](url)Hyperlink
    ![Alt text](image-url)Image
    `inline code`Inline code
    ```code block```Fenced code block
    - itemUnordered list item
    1. itemOrdered list item
    > blockquoteBlockquote
    --- Horizontal rule

    What is GitHub Flavored Markdown?

    GitHub Flavored Markdown (GFM) is a superset of standard Markdown used on GitHub, GitLab, and many developer platforms. It adds support for tables, task lists, strikethrough, and fenced code blocks with syntax highlighting. This markdown editor supports GFM so your preview matches exactly what renders on GitHub.

    Common Uses for Markdown

    README Files
    Write GitHub README files with proper formatting, badges, and code examples.
    Documentation
    Create technical docs, wikis, and developer guides that render cleanly in any Markdown viewer.
    Blog Posts
    Many CMS platforms (Ghost, Jekyll, Hugo) use Markdown for blog content.
    Notes & Docs
    Tools like Notion, Obsidian, and Bear use Markdown for note-taking.
    API Documentation
    Write clean, formatted API docs that render in Swagger, Postman, and GitHub.
    Chat Platforms
    Slack, Discord, and Teams support Markdown formatting for messages.

    What is Markdown?

    Markdown is a lightweight markup language created by John Gruber in 2004. It lets you format plain text using simple punctuation — asterisks for bold, hashes for headings, hyphens for lists — and then converts it to clean HTML. Unlike a word processor, you write in one plain-text file and render it anywhere: GitHub, a blog, documentation sites, or a chat app.

    The key advantage is portability. A Markdown file is just text, so it opens in any editor, stays readable without rendering, and never gets corrupted by proprietary formats. It's the default format for GitHub README files, developer documentation (Docusaurus, MkDocs, Nextra), static site generators (Jekyll, Hugo, Astro), and note-taking tools like Obsidian, Notion, and Bear.

    There are several Markdown flavours. The most widely used today is GitHub Flavored Markdown (GFM), which adds tables, task lists, strikethrough, and auto-linked URLs on top of the original spec. This editor uses GFM so your preview matches what GitHub, GitLab, and most modern platforms actually render.

    GitHub Flavored Markdown (GFM) Syntax

    These are the GFM extensions not in standard Markdown. They work on GitHub, GitLab, and in this editor.

    FeatureSyntaxOutput
    Task list (done)- [x] Buy milkChecked checkbox
    Task list (open)- [ ] Buy eggsUnchecked checkbox
    Strikethrough~~deleted text~~del element (line through)
    Table| Col | Col |\n|-----|-----|\n| A | B |Formatted HTML table
    Fenced code block```js\ncode here\n```Syntax-highlighted code
    Auto-link URLhttps://example.comClickable hyperlink
    Mention@usernameUser mention (GitHub only)
    Issue reference#123Issue link (GitHub only)
    FootnoteText[^1]\n[^1]: NoteFootnote at page bottom
    Emoji shortcode:rocket: :tada:🚀 🎉

    Markdown vs Rich Text vs HTML

    MarkdownRich Text (Word/Docs)Raw HTML
    Readable as plain text✅ Yes❌ Binary format⚠️ Tags clutter it
    Version control friendly✅ Git diffs cleanly❌ Binary diffs✅ Yes
    Learning curve✅ 10 min✅ Familiar⚠️ Moderate
    Renders in browser⚠️ Needs a parser❌ No✅ Native
    Works on GitHub✅ Native support❌ No⚠️ Limited
    Portable / future-proof✅ Plain text forever❌ App-dependent✅ Yes
    Tables & task lists✅ GFM extension✅ Yes✅ Yes

    Frequently Asked Questions

    Common questions about Markdown Preview Editor