Markdown Toolbox Logo Markdown Toolbox
Home
Blog

Sytas Ergonomic Office Chair Home Office Desk Chair with Lumbar SupportSytas Ergonomic Office Chair Home Office Desk Chair with Lumbar Support

The chair I use in my home office. A good balance of budget friendly price and quality. And my 18 month old loves looking in the reflective surface on the back, so there's that.

Affiliate Link - As an Amazon Associate I earn from qualifying purchases.

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