Markdown Preview

Preview Markdown formatting in real-time with split-screen editor

Preview will appear here...

Markdown Syntax Guide

Headings

# Heading 1 ## Heading 2 ### Heading 3

Text Formatting

**Bold text** *Italic text* ***Bold and italic*** ~~Strikethrough~~

Lists

Unordered list: - Item 1 - Item 2 - Nested item Ordered list: 1. First item 2. Second item 3. Third item

Links and Images

[Link text](https://example.com) ![Alt text](image-url.jpg)

Code

Inline `code` with backticks ```javascript // Code block function hello() { console.log("Hello World"); } ```

Blockquotes

> This is a blockquote > It can span multiple lines

Tables

| Header 1 | Header 2 | |----------|----------| | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |

Horizontal Rule

--- or ***

Why Use Markdown?

Markdown is a lightweight markup language that's easy to write and read. It's widely used for documentation, README files, blog posts, and note-taking. The syntax is simple yet powerful, allowing you to format text without leaving your keyboard.

Common Uses