HTML to Markdown Converter
Jump to Markdown
Enter URL:
Load
Or enter HTML code:
<h1>HTML to Markdown Conversion Test</h1> <h2>Text Formatting</h2> <p>This paragraph contains <strong>bold text</strong>, <em>italic text</em>, and <code>inline code</code>.</p> <h3>Lists</h3> <h4>Unordered List</h4> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> <h3>Code Block</h3> <pre><code> function greet(name) { console.log(`Hello, ${name}!`); } </code></pre> <h3>Link and Image</h3> <p>Here's a <a href="https://www.example.com">link to Example.com</a>.</p> <img src="https://via.placeholder.com/150" alt="Placeholder image"> <hr> <h3>Table</h3> <table> <thead> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> </tr> </thead> <tbody> <tr> <td>Row 1, Cell 1</td> <td>Row 1, Cell 2</td> <td>Row 1, Cell 3</td> </tr> <tr> <td>Row 2, Cell 1</td> <td>Row 2, Cell 2</td> <td>Row 2, Cell 3</td> </tr> </tbody> </table>
Clear
Convert
Markdown Output:
Copy Markdown