Markdown Complete Guide

Master Markdown formatting in minutes

Markdown is a lightweight markup language for creating formatted text. It's used everywhere: GitHub, Reddit, Discord, documentation, and more.

📝 Try Markdown Now

Convert Markdown to HTML instantly.

Open Converter →

Basic Syntax

Headings

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

Text Formatting

**bold text**
*italic text*
~~strikethrough~~
`inline code`

Lists

- Unordered item
- Another item

1. Ordered item
2. Another item

Links & Images

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

Code Blocks

```javascript
const hello = "world";
```

Tables

| Header 1 | Header 2 |
|----------|----------|
| Cell 1   | Cell 2   |

Blockquotes

> This is a quote
> It can span multiple lines

Quick Reference Table

ElementSyntax
Bold**text**
Italic*text*
Link[text](url)
Image![alt](url)
Code`code`
Horizontal Rule---

Try Markdown Converter

📝 Convert Markdown