Markdown Editor

Create and edit Markdown documents with real-time preview

Editor

0 words | 0 characters

Preview

Markdown Quick Reference

Basic Syntax

# Heading 1<h1>Heading 1</h1>
## Heading 2<h2>Heading 2</h2>
**bold text**<strong>bold text</strong>
*italic text*<em>italic text</em>
[link text](URL)<a href="URL">link text</a>
![alt text](image.jpg)<img src="image.jpg" alt="alt text">
`code`<code>code</code>

Extended Syntax

```
code block
```
<pre><code>code block</code></pre>
- list item<ul><li>list item</li></ul>
1. list item<ol><li>list item</li></ol>
- [x] taskTask list with checkbox
blockquote<blockquote>blockquote</blockquote>
| table | header |HTML table
---<hr> (horizontal rule)