I'm trying to create a table in markdown syntax where a cell's content spans across various rows. How can I achieve this?
The table should look something like:
http://www.w3resource.com/html/attributes/html-rowspan-attribute-with-td-element.png
Thanks in advance!
As of today, there is no syntax for tables in standard Markdown language. You can find that within some Markdown extensions like MultiMarkdown or Markdown Extra, but no rowspan support.
You can still include html code in your markdown like in this example:
**Hello** <table> <tr><td>rowspan1</td><td rowspan="2">rowspan2</td></tr> <tr><td>rowspan1</td></tr> </table> *World*
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