Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
empty line in table cell in reStructuredText (rst)
+1
−0
I would like to have an empty line in the cell of a table in reStructuredText. Consider the following example:
.. list-table::
:header-rows: 1
* - aaa
- bbb
* - ccc
- ddd
eee
Which produces this table:
But I would like there to be an empty line between "ddd" and "eee" in the lower-right cell of the table. So it should look something like this:
How do I achieve this?
0 comment threads