Like other block-level constructs, grid tables may be indented by up to
three spaces and are still recognized as tables.
```
% pandoc -f markdown -t html
+---+---+
| a | b |
+===+===+
| 1 | 2 |
+---+---+
^D
```
A headerless indented grid table is recognized too.
```
% pandoc -f markdown -t html
+------+------+
| foo | bar |
+------+------+
^D
```
A grid table indented four spaces is a code block, not a table.
```
% pandoc -f markdown -t html
+---+---+
| a | b |
+---+---+
^D
+---+---+
| a | b |
+---+---+
```