Create table without header in markdown/reStructuredText?
Posted by jpluimers on 2020/06/12
It looks like few of the markdown parsers can generate a table without a header: [WayBack] Create table without header in markdown – Stack Overflow.
This comes close in some generators as they generate a half-height empty header for it:
| | | | |-|-|-| | Normal Key| Value1 | |__BoldKey__| Value2 |
But [WayBack] reStructuredText Markup Specification: Grid Tables do support it even if a pipe cell delimiter is inside a cell content:
+--------------+----------+-----------+-----------+ | row 1, col 1 | column 2 | column 3 | column 4 | +--------------+----------+-----------+-----------+ | row 2 | Use the command ``ls | more``. | | | | +--------------+----------+-----------+-----------+ | row 3 | | | | +--------------+----------+-----------+-----------+
–jeroen
Leave a Reply