Markdown Toolbox Logo Markdown Toolbox
Home
Blog
Privacy Policy
Terms

Can I use HTML within markdown?

Wednesday, November 29, 2023

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>
    <tr>
        <td>Table cell 1</td>
        <td>Table cell 2</td>
    </tr>
</table>

Bold text using HTML Italic text using HTML

Table cell 1Table cell 2

Share this page