Markdown to HTML Converter
Markdown Input
# Hello World This is **bold** and this is *italic*. - List item 1 - List item 2 [Link](https://example.com)
HTML Output
Copy HTML
<h1>Hello World</h1><br /></p> <p>This is <strong>bold</strong> and this is <em>italic</em>.<br /></p> <ul><li>List item 1</li></p> <li>List item 2<br /></li></ul></p> <p><a href="https://example.com">Link</a></p>
Preview
Hello World
This is
bold
and this is
italic
.
List item 1
List item 2
Link
Supported Markdown
# Header 1, ## Header 2, ### Header 3
**bold text**, *italic text*
`inline code`
[link text](url)
- list item or * list item