1

What markup should be used to turn the first row into a table header?

+-------+----------+-------------------------------------------------+
|  Bits |   Field  |                   Description                   |
|       |   Name   |                                                 |
+-------+----------+-------------------------------------------------+
| 31:28 |  FORMAT  | Indicates size of data type in buffer in bytes  |
|       |          | Indicates size of data type in buffer in bytes  |
|       |          | Indicates size of data type in buffer in bytes  |
|       |          | Indicates size of data type in buffer in bytes  |
+-------+----------+-------------------------------------------------+
DANI3L
  • 25
  • 5

1 Answers1

1

That appears to be Pandoc's grid_tables. The header should be separated from the body by =, like this:

+-------+----------+-------------------------------------------------+
|  Bits |   Field  |                   Description                   |
|       |   Name   |                                                 |
+=======+==========+=================================================+
| 31:28 |  FORMAT  | Indicates size of data type in buffer in bytes  |
|       |          | Indicates size of data type in buffer in bytes  |
|       |          | Indicates size of data type in buffer in bytes  |
|       |          | Indicates size of data type in buffer in bytes  |
+-------+----------+-------------------------------------------------+
Waylan
  • 37,164
  • 12
  • 83
  • 109