Back to Tools
Markdown to HTML Guide
Headers
- # Heading 1 → <h1>
- ## Heading 2 → <h2>
- ### Heading 3 → <h3>
- #### Heading 4 → <h4>
Text Formatting
- **bold** → <strong>
- *italic* → <em>
- `code` → <code>
- ~~strikethrough~~ → <del>
Links & Images
- [text](url) → <a>
-  → <img>
- Automatic link detection
- Image sizing support
Lists & Blocks
- - item → <ul><li>
- 1. item → <ol><li>
- > quote → <blockquote>
- ```code``` → <pre><code>
Conversion Tips
Markdown Formatting
- Use proper header hierarchy
- Escape special characters
- Use consistent formatting
- Test with sample content
HTML Output
- Enable pretty print for readability
- Include CSS for styling
- Choose appropriate HTML version
- Validate HTML after conversion
Common Issues
- Check Markdown syntax
- Handle special characters
- Validate HTML output
- Test in different browsers