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.
Post History
With this code: <tr> <th>Downvotes</th> <th>Minimum upvotes to stay above 40%</th> </tr> <tr> <td>1</td> <td>...
#1: Initial revision
HTML tables are misdisplayed
With this code: ```<table> <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): ![Proper Table](https://meta.codidact.com/uploads/9Xecy67RFKMjHdiArcsmFVXL) --- On post submission it's instead displayed as: ![Weird Table](https://meta.codidact.com/uploads/f6gGK4QK8uyEzvnxfHRfHm5x)