Markdown 到 HTML 轉換器

在下方的輸入框中貼上您的 Markdown 語法,即可看到 HTML 原始碼和渲染後的預覽。

Markdown 輸入
HTML 原始碼輸出
<h1>Hello, Markdown!</h1>
<p>This is a sample text.</p>
<table class="table table-bordered table-sm">
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</tbody>
</table>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
HTML 預覽

Hello, Markdown!

This is a sample text.

Header 1 Header 2
Cell 1 Cell 2
Cell 3 Cell 4
  • Item 1
  • Item 2