aboutsummaryrefslogtreecommitdiff
path: root/test/command/5128.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-11-15 23:09:53 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2019-11-15 23:09:53 -0800
commit1f69162ffd5f16367d2de0b62c9a80f4d3b9bc59 (patch)
tree40177e3c06735d88b1d1b8799454cb78b117b1b0 /test/command/5128.md
parent6c1692ea2271446caba6e95d43aeee6db805e3ce (diff)
downloadpandoc-1f69162ffd5f16367d2de0b62c9a80f4d3b9bc59.tar.gz
RST writer: Improve spacing for tables with no width information.
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.
Diffstat (limited to 'test/command/5128.md')
-rw-r--r--test/command/5128.md26
1 files changed, 17 insertions, 9 deletions
diff --git a/test/command/5128.md b/test/command/5128.md
index 2ab051c04..35866547e 100644
--- a/test/command/5128.md
+++ b/test/command/5128.md
@@ -1,5 +1,5 @@
```
-pandoc -f org -t rst
+pandoc -f org -t rst --columns=78
| Option | Meaning |
|--------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| =<= | Left alignment, additional characters are added to the right (default for string). |
@@ -7,12 +7,20 @@ pandoc -f org -t rst
| =^= | 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).
-====== ============================================================================================================================================================================================================
++--------+------------------------------------------------------------------+
+| 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). |
++--------+------------------------------------------------------------------+
```