Markdown isn't processed inside tables

I know HTML tables aren’t top priority, but this is rather annoying

Here’s a few common text formats, working as intended:

Link bold code

Inside a table, the same markdown isn’t processed:

<table>
<tr>
<td>[Link][1]</td><td>**bold**</td><td> `code`</td>
</tr>
</table>

result:

[Link][1] **bold** `code`

Meanwhile, markdown inside other legitimate HTML is processed normally

<i>[Link][1]</i>

result:

Link

1 Like

Perhaps this will work with the future upgrade to markdown-it:

4 Likes
hmmm hmmm
does it work yes it does
|hmmm|hmmm|
|----|----|
|does it **work**| yes it does|

We have terrible CSS formatting for tables, @Falco is going to commit a fix for it shortly, however this all works fine now.

5 Likes