The table alignment not work in markdown
Created by: MiguelAngelLV
I write the code in wiki markdown
|Código | Descripción |
|:-----:| ------------------------------------|
| 1 | No hacer nada |
| 2 | Borrar el logger |
| 3 | Volver a intentar enviar el logger |
And the alignment it is not rendered
<table>
<tbody>
<tr>
<th>Código</th>
<th>Descripción</th>
</tr>
<tr>
<td>1</td>
<td>No hacer nada</td>
</tr>
<tr>
<td>2</td>
<td>Borrar el logger</td>
</tr>
<tr>
<td>3</td>
<td>Volver a intentar enviar el logger</td>
</tr>
</tbody>
</table>