Markdown Toolbox Logo Markdown Toolbox
Home
Blog

Can I use HTML within markdown?

2023-11-29

Yes, you can use HTML within Markdown. Markdown is designed to be compatible with HTML, so you can use HTML tags for formatting that isn't supported by Markdown syntax.

<b>Bold text using HTML</b>
<i>Italic text using HTML</i>
<br>

<table>
  <tbody>
    <tr>
        <td>Table cell 1</td>
        <td>Table cell 2</td>
    </tr>
   </tbody>
</table>

Bold text using HTML Italic text using HTML

Table cell 1 Table cell 2