Open Minoru opened 8 years ago
colspan causes things to shift in a way they shouldn't. The following HTML:
colspan
<table border='1'> <tr> <th colspan='2'>hello</th> <th>world</th> <th>how</th> <th>are</th> <th>you</th> </tr> <tr> <td>one</td> <td>two</td> <td>three</td> <td>four</td> <td>five</td> <td>six</td> </tr> </table>
renders as:
+---+-----+-----+----+----+---+ |hello |world|how |are |you | +---+-----+-----+----+----+---+ |one|two |three|four|five|six| +---+-----+-----+----+----+---+
The first row there is obviously broken.
The same happens with <th> (i.e. when using <th colspan='2'> instead of <td colspan='2'>.)
<th>
<th colspan='2'>
<td colspan='2'>
Hi, I am getting something similar.
When expecting
I am getting:
Hi, @thiagolcmelo! Your screenshot doesn't look anything like Newsbeuter. Perhaps you commented in the wrong repository?
colspan
causes things to shift in a way they shouldn't. The following HTML:renders as:
The first row there is obviously broken.
The same happens with
<th>
(i.e. when using<th colspan='2'>
instead of<td colspan='2'>
.)