Is there a way to have 'colspan' on github markdown?
I'm trying to create a table where one row takes up four columns.
| One | Two | Three | Four |
| ------------- |-------------| ---------| ------------- |
| One | Two | Three | Four |
| One | Two | Three | Four |
| ------------- |-------------| ---------| ------------- |
| Span Across ||||
You can see a live preview by pasting the above here http://markdown-here.com/livedemo.html
You can use HTML tables on GitHub (but not on StackOverflow)
<table>
<tr>
<td>One</td>
<td>Two</td>
</tr>
<tr>
<td colspan="2">Three</td>
</tr>
</table>
Becomes
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With