HTML to Markdown

๐Ÿค– Agent Ready

Convert HTML to Markdown โ€” headings, bold, italic, links, images, lists, code blocks, tables

HTML Input
Markdown Output
<h1>Hello, World!</h1>
<p>This is a <strong>bold</strong> and <em>italic</em> paragraph.</p>
<h2>Features</h2>
<ul>
  <li>Supports <code>inline code</code></li>
  <li>And <a href="https://devpick.sh">links</a></li>
  <li>And images: <img src="logo.png" alt="Logo" /></li>
</ul>
<h3>Code Block</h3>
<pre><code class="language-javascript">const x = 42;
console.log(x);
</code></pre>
<blockquote>
  <p>A blockquote example.</p>
</blockquote>
<table>
  <tr><th>Name</th><th>Age</th></tr>
  <tr><td>Alice</td><td>30</td></tr>
  <tr><td>Bob</td><td>25</td></tr>
</table>
Supported: h1-h6, bold, italic, strikethrough, inline code, code blocks (with language), links, images, unordered/ordered lists, blockquotes, horizontal rules, paragraphs, tables