aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2020-09-25 09:42:30 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2020-09-25 09:44:00 +0200
commit29baaa2acb232a4064eb23b4c899f878e3d63d8f (patch)
tree215b80471f5d8b749dfd156ddfb970eddac49054 /doc
parent1a725812867607f7833afda677914f574d03cc44 (diff)
downloadpandoc-29baaa2acb232a4064eb23b4c899f878e3d63d8f.tar.gz
doc/org.md: add section on tables
Diffstat (limited to 'doc')
-rw-r--r--doc/org.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/org.md b/doc/org.md
index a19db53a9..94822f497 100644
--- a/doc/org.md
+++ b/doc/org.md
@@ -264,6 +264,34 @@ Use normal latex citation commands like `\cite{x}` or
[org-ref]: https://github.com/jkitchin/org-ref
[John Kitchen]: https://kitchingroup.cheme.cmu.edu/
+Tables
+======
+
+Pandoc supports normal org tables (sometimes calles "pipe tables")
+and grid tables (tables created by [table.el]).
+
+Column widths
+-------------
+
+Org mode tables don't allow line-breaks within cells, and lines
+which contain text can get very long. This often leads to tables
+which run off the page when exporting, especially when exporting
+to PDF via LaTeX. Overlong lines in the source text are this is
+usually hidden by setting a [column width], but the default Emacs
+exporters ignore that setting. Pandoc deviates from Emacs's
+behavior and uses this information to resize the table columns
+when exporting.
+
+Limitations
+-----------
+
+There is no support yet for cells spanning multiple columns or
+rows. The table.el grid tables allows rowspans and colspans and so
+does pandoc's internal structure since 2.10, but the parser has
+not been updated yet.
+
+[table.el]: http://table.sourceforge.net/
+[column width]: https://orgmode.org/manual/Column-Width-and-Alignment.html
Emphasis rules
==============