Create and edit Markdown documents with real-time preview
| # 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> |
|  | <img src="image.jpg" alt="alt text"> |
| `code` | <code>code</code> |
| ``` 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] task | Task list with checkbox |
| blockquote | <blockquote>blockquote</blockquote> |
| | table | header | | HTML table |
| --- | <hr> (horizontal rule) |