Instant Markdown to HTML Converter
Everything you need to format text quickly.
Use hash marks (#) for headers. The number of hashes determines the header level.
# H1 Header
## H2 Header
### H3 Header
For emphasis, use asterisks or underscores:
**Bold Text** or __Bold Text__
*Italic Text* or _Italic Text_
~~Strikethrough~~
Create unordered lists with hyphens or asterisks, and ordered lists with numbers.
- Item 1
- Item 2
- Sub-item
1. First Item
2. Second Item
To create links and images:
[Link Text](https://example.com)

Use backticks for inline code, and triple backticks for code blocks.
`inline code`
```
Code block
Multiple lines
```
Create tables using pipes and hyphens:
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |