List-table with header-rows and widths options. 
```
% pandoc -f rst
.. list-table:: Frozen Delights!
   :widths: 15 10 30
   :header-rows: 1
   * - Treat
     - Quantity
     - Description
   * - Albatross
     - 2.99
     - On a stick!
   * - Crunchy Frog
     - 1.49
     - If we took the bones out, it wouldn't be
       crunchy, now would it?
   * - Gannet Ripple
     - 1.99
     - On a stick!
^D
Frozen Delights!
| Albatross | 2.99 | On a stick! | 
| Crunchy Frog | 1.49 | If we took the bones out, it wouldn't be crunchy, now would it? | 
| Gannet Ripple | 1.99 | On a stick! | 
```
List-table whose widths is "auto". 
```
% pandoc -f rst
.. list-table:: Frozen Delights!
   :header-rows: 1
   :widths: auto
   * - Treat
     - Quantity
     - Description
   * - Albatross
     - 2.99
     - On a stick!
   * - Crunchy Frog
     - 1.49
     - If we took the bones out, it wouldn't be
       crunchy, now would it?
   * - Gannet Ripple
     - 1.99
     - On a stick!
^D
Frozen Delights!
| Albatross | 2.99 | On a stick! | 
| Crunchy Frog | 1.49 | If we took the bones out, it wouldn't be crunchy, now would it? | 
| Gannet Ripple | 1.99 | On a stick! | 
```
List-table with header-rows which is bigger than 1. Only the first row is treated as a header. 
```
% pandoc -f rst
.. list-table:: Frozen Delights!
   :header-rows: 2
   * - Treat
     - Quantity
     - Description
   * - Albatross
     - 2.99
     - On a stick!
   * - Crunchy Frog
     - 1.49
     - If we took the bones out, it wouldn't be
       crunchy, now would it?
   * - Gannet Ripple
     - 1.99
     - On a stick!
^D
Frozen Delights!
| Albatross | 2.99 | On a stick! | 
| Crunchy Frog | 1.49 | If we took the bones out, it wouldn't be crunchy, now would it? | 
| Gannet Ripple | 1.99 | On a stick! | 
```
List-table without header-rows.
```
% pandoc -f rst
.. list-table:: Frozen Delights!
   * - Albatross
     - 2.99
     - On a stick!
   * - Crunchy Frog
     - 1.49
     - If we took the bones out, it wouldn't be
       crunchy, now would it?
   * - Gannet Ripple
     - 1.99
     - On a stick!
^D
Frozen Delights!
| Albatross | 2.99 | On a stick! | 
| Crunchy Frog | 1.49 | If we took the bones out, it wouldn't be crunchy, now would it? | 
| Gannet Ripple | 1.99 | On a stick! | 
```
List-table with empty cells. You need a space after '-', otherwise the row will disappear. Parser for Bulletlists causes this restriction. 
```
% pandoc -f rst
.. list-table:: Frozen Delights!
   :header-rows: 2
   * - Treat
     - Quantity
     - Description
   * - Albatross
     - 2.99
     - 
   * - Crunchy Frog
     - 
     - If we took the bones out, it wouldn't be
       crunchy, now would it?
   * - Gannet Ripple
     - 1.99
     - On a stick!
^D
Frozen Delights!
| Albatross | 2.99 |  | 
| Crunchy Frog |  | If we took the bones out, it wouldn't be crunchy, now would it? | 
| Gannet Ripple | 1.99 | On a stick! | 
```
List-table with a cell having a bulletlist
```
% pandoc -f rst
.. list-table:: Frozen Delights!
   * - Albatross
     - 2.99
     - + On a stick!
       + In a cup!
   * - Crunchy Frog
     - 1.49
     - If we took the bones out, it wouldn't be
       crunchy, now would it?
   * - Gannet Ripple
     - 1.99
     - On a stick!
^D
Frozen Delights!
| Albatross | 2.99 |  | 
| Crunchy Frog | 1.49 | If we took the bones out, it wouldn't be crunchy, now would it? | 
| Gannet Ripple | 1.99 | On a stick! | 
```