Markdown Previewer
Write Markdown and see a live preview. Includes a handy syntax guide.
Markdown Syntax Guide

Headings

  • # H1

    Largest heading

  • ## H2

    Second largest heading

  • ### H3

    And so on...

  • ###### H6

    Smallest heading

Emphasis

  • *italic text* or _italic text_

    Italic

  • **bold text** or __bold text__

    Bold

  • ***bold and italic*** or ___bold and italic___

    Bold and Italic

  • ~~strikethrough~~

    Strikethrough

Lists

  • * Item 1
    * Item 2
      * Nested Item 2a
      * Nested Item 2b

    Unordered List

  • 1. First Item
    2. Second Item
       1. Nested First
       2. Nested Second

    Ordered List

Links

  • [Link Text](https://www.example.com)

    Basic link

  • [Link Text with Title](https://www.example.com "Link Title")

    Link with a hover title

Images

  • ![Alt text for image](https://placehold.co/100x50.png)

    Image with alt text

Code Blocks / Inline

  • `inline code`

    Inline code snippet

  • ```javascript
    console.log("Hello, world!");
    ```

    Fenced code block with language specification

  • ```
    Generic code block
    ```

    Generic fenced code block

Blockquotes

  • > This is a blockquote.
    >
    > It can span multiple lines.

    Standard blockquote

Horizontal Rules

  • ---

    Horizontal rule

  • ***

    Another way for horizontal rule

  • ___

    Yet another way

Icons

  • Markdown doesn't natively support icons. You can include SVGs directly as HTML if your Markdown parser allows raw HTML (like the one used here), or use image tags: icon. For SVG examples, you might use something like: