GitLab Markdown doesn't allow table creation
Created by: naftulikay
Though Markdown proper has support for this, it appears that GitLab doesn't allow creating tables. GitHub supports this, as seen here:
One | Two | Three |
The same code doesn't work in GitLab. Here's the code:
<table>
<tbody>
<tr>
<td>One</td>
<td>Two</td>
<td>Three</td>
</tr>
</tbody>
</table>
On GitLab, it renders like this:
One Two Three