mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
This handles row and colspans. Partially addresses #6344. It also ensures that cells won't wrap text in places where it wouldn't normally wrap, even if this means making the cells wider than requested by the colspec. (Closes #9001. Closes 7641.) Parameters are different, so this is a breaking [API change]. Markdown, RST, and Muse writers have been adjusted to use the new `gridTable`.
27 lines
2.5 KiB
Markdown
27 lines
2.5 KiB
Markdown
```
|
|
% pandoc -f org -t rst --columns=78
|
|
| Option | Meaning |
|
|
|--------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
| =<= | Left alignment, additional characters are added to the right (default for string). |
|
|
| =>= | Right alignment, additional characters are added to the left. |
|
|
| =^= | Centered , the same amount of characters is added to the left and the right. |
|
|
| === | Padding. If a numeric value is printed with a sign, then additional characters are added after the sign. Otherwise it behaves like "=>=". This option is only available for numbers (default for numbers). |
|
|
^D
|
|
+--------+-------------------------------------------------------------------+
|
|
| Option | Meaning |
|
|
+========+===================================================================+
|
|
| ``<`` | Left alignment, additional characters are added to the right |
|
|
| | (default for string). |
|
|
+--------+-------------------------------------------------------------------+
|
|
| ``>`` | Right alignment, additional characters are added to the left. |
|
|
+--------+-------------------------------------------------------------------+
|
|
| ``^`` | Centered , the same amount of characters is added to the left and |
|
|
| | the right. |
|
|
+--------+-------------------------------------------------------------------+
|
|
| ``=`` | Padding. If a numeric value is printed with a sign, then |
|
|
| | additional characters are added after the sign. Otherwise it |
|
|
| | behaves like "``>``". This option is only available for numbers |
|
|
| | (default for numbers). |
|
|
+--------+-------------------------------------------------------------------+
|
|
```
|