Markdown to HTML Converter

Convert Markdown syntax to HTML with live preview. Supports headings, lists, links, images, code blocks, and more.

Markdown Syntax Guide

Headings

# H1
## H2
### H3

Emphasis

*italic* or _italic_
**bold** or __bold__
***bold italic***

Lists

- Unordered item
- Another item

1. Ordered item
2. Another item

Links & Images

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

Code

`inline code`

```
code block
```