Markdown Syntax Cheat Sheet
| Markdown | HTML Output |
|---|---|
| # Heading 1 | <h1> |
| **bold** | <strong> |
| *italic* | <em> |
| [link](url) | <a href> |
| - item | <ul><li> |
| `code` | <code> |
Convert Markdown text to clean HTML with live preview. Supports headings, lists, links, code blocks, and tables.
| Markdown | HTML Output |
|---|---|
| # Heading 1 | <h1> |
| **bold** | <strong> |
| *italic* | <em> |
| [link](url) | <a href> |
| - item | <ul><li> |
| `code` | <code> |
This is a lightweight converter that covers headings, bold, italic, links, lists, code, and horizontal rules. It does not support tables, task lists, or footnotes.
For production use, consider a full library like marked.js or markdown-it. This converter is for quick previews and simple content.
Paste Markdown text in the input area. The converter renders HTML output in real-time with a preview panel showing the formatted result.
# = h1, ## = h2, **bold**, *italic*, [link](url), , - list items, > blockquote, ``` code blocks ```, | tables |.
# Hello World β
Markdown is standard for GitHub README files, documentation, blogs, and technical writing. Learn the basics (headings, links, lists, bold/italic) β they cover 90% of daily use. Use line breaks for readability.