I am trying to make an HTML document in sphinx_rtd_theme. I want to make a table containing a multi-line cell, so I added a code like
+----------+----------+----------+
| header 1 | header 2 | header 3 |
+==========+==========+==========+
| a | | b1 | c |
| | | b2 | |
+----------+----------+----------+
As a result, I get an HTML file that looks like the following image:
There are blank lines in the header row and the second row. They make the table ugly so I want to remove those empty lines. Is there anything I can do this? Thank you for reading my question.