-
Hi, Not sure if this is a bug so didn't report it in issues, but HTML tables such as <table border="1">
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1, Cell 1</td>
<td>Row 1, Cell 2</td>
</tr>
<tr>
<td>Row 2, Cell 1</td>
<td>Row 2, Cell 2</td>
</tr>
</tbody>
</table> will not render in Ideally I'd want to keep files as P.s. similarly for iframes :D. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
to use HTML in markdown files, you are supposed to use MDX since we don’t render normal HTML but JSX (React components) instead. GitHub style table syntax (like the one mentioned in docs) is supported |
Beta Was this translation helpful? Give feedback.
to use HTML in markdown files, you are supposed to use MDX since we don’t render normal HTML but JSX (React components) instead. GitHub style table syntax (like the one mentioned in docs) is supported