1f69162ffd
If a simple table would be too wide, we use a grid table. The code for generating grid tables has been adjusted to give more intelligent column widths when widths aren't given. (This also affects the markdown writer.) Closes #5899.
26 lines
2.5 KiB
Markdown
26 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). |
|
|
+--------+------------------------------------------------------------------+
|
|
```
|