Welcome to Codidact Meta!
Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.
HTML tables are misdisplayed
+2
−0
With this code:
<tr>
<th>Downvotes</th>
<th>Minimum upvotes to stay above 40%</th>
</tr>
<tr>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>3</td>
<td>2</td>
</tr>
<tr>
<td>4</td>
<td>3</td>
</tr>
<tr>
<td>5</td>
<td>3</td>
</tr>
<tr>
<td>6</td>
<td>4</td>
</tr>
<tr>
<td>7</td>
<td>5</td>
<tr>
</table>
I expect this table (as displayed in the editor):
On post submission it's instead displayed as:
1 answer
+0
−0
Testing:
Downvotes | Minimum upvotes to stay above 40% |
---|---|
1 | 1 |
2 | 1 |
3 | 2 |
4 | 3 |
5 | 3 |
6 | 4 |
7 | 5 |
1 comment thread