add documentation of limitations of grid tables (#3864)

- see discussion: https://groups.google.com/forum/#!topic/pandoc-discuss/r9fAeeV3dSw
- grid tables cannot have row spans or column spans
This commit is contained in:
Stephen McDowell 2017-08-23 13:50:59 -07:00 committed by John MacFarlane
parent 5c1d844e40
commit 5365baef9c

View file

@ -2518,6 +2518,18 @@ For headerless tables, the colons go on the top line instead:
| Right | Left | Centered |
+---------------+---------------+--------------------+
##### Grid Table Limitations #####
Pandoc does not support grid tables with row spans or column spans.
This means that neither variable numbers of columns across rows nor
variable numbers of rows across columns are supported by Pandoc.
All grid tables must have the same number of columns in each row,
and the same number of rows in each column. For example, the
Docutils [sample grid tables] will not render as expected with
Pandoc.
[sample grid tables]: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#grid-tables
#### Extension: `pipe_tables` ####