Convert Markdown to HTML And HTML to Markdown
Paste or type your markdown and see it rendered as HTML. Download or copy the resulting HTML.
Basic Formatting
Bold: **Bold**
Emphasized: *Emphasized*
Strikethrough: ~~Strikethrough~~
Horizontal rules: ---
, ***
, or ___
Headings
- H1:
# Heading 1
- H2:
## Heading 2
- H3-H6: Continue adding
#
up to six levels.
Links
- Inline: inline
- With title: have a title
- Reference link example: reference link
Lists
Unordered List
- One item
-
Another item
- A sub-item
- A deeper item
- And back at the main level
Ordered List
- First item
-
Second item
- Nested unordered list
Code and Syntax Highlighting
Inline code: `backticks`
// Example of a code block
var foo = 'bar';
function baz(s) {
return foo + ':' + s;
}