ToolHub
中文
Light
GitHub
返回首页
/
文本写作
/
HTML 转 Markdown
加载中...
实时将 HTML 转换为 Markdown
示例
复制
HTML
<h1>Hello World</h1> <p>This is a <strong>bold</strong> and <em>italic</em> text with a <a href="https://example.com">link</a>.</p> <h2>List Example</h2> <ul> <li>Item one</li> <li>Item two</li> <li>Item three</li> </ul> <blockquote>This is a quote</blockquote> <pre><code>const x = 42;</code></pre>
Markdown
# Hello World This is a **bold** and *italic* text with a [link](https://example.com). ## List Example - Item one - Item two - Item three > This is a quote ``` `const x = 42;` ```