| H1 | # Title | Title | <h1>Title</h1> |
| H2 | ## Title | Title | <h2>Title</h2> |
| H3 | ### Title | Title | <h3>Title</h3> |
| H4 | #### Title | Title | <h4>Title</h4> |
| H5 | ##### Title | Title | <h5>Title</h5> |
| H6 | ###### Title | Title | <h6>Title</h6> |
| Bold | **text** | text | <strong>text</strong> |
| Italic | *text* | text | <em>text</em> |
| Strikethrough | ~~text~~ | text | <del>text</del> |
| Underline | __text__ | text | <u>text</u> (partial support) |
| Inline code | `code` | code | <code>code</code> |
| Blockquote | > text | > text | <blockquote><p>text</p></blockquote> |
| Unordered list | - Item | • Item | <ul><li>Item</li></ul> |
| Ordered list | 1. Item | 1. Item | <ol><li>Item</li></ol> |
| Link | [Text](url) | Text | <a href="url">Text</a> |
| Image |  | (image) | <img src="img.png" alt="alt" /> |
| Code block | js<br>code<br> | Code block | <pre><code class='language-js'>…</code></pre> |
| Table | ` | a | b |
| Task list | - [x] done | ☑ done | <input type="checkbox" checked> |