aboutsummaryrefslogtreecommitdiff
path: root/test/tables.rst
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-02-11 22:36:47 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-02-11 22:37:07 +0100
commit27599602042a43bfe1506c008dab862352bba0b1 (patch)
tree75a5fcbb9dddff3e9595a9baef04a78ea08cd763 /test/tables.rst
parent510a6ee059cd99bef41102f754c0e4674493f28f (diff)
downloadpandoc-27599602042a43bfe1506c008dab862352bba0b1.tar.gz
RST reader/writer: properly handle table captions.
Currently the support for the `.. table` directive is a bit limited; we don't yet support the `widths` field. But at least you can have a proper captioned table.
Diffstat (limited to 'test/tables.rst')
-rw-r--r--test/tables.rst68
1 files changed, 34 insertions, 34 deletions
diff --git a/test/tables.rst b/test/tables.rst
index fc7f0b475..184d9894a 100644
--- a/test/tables.rst
+++ b/test/tables.rst
@@ -1,16 +1,16 @@
Simple table with caption:
-+---------+--------+----------+-----------+
-| Right | Left | Center | Default |
-+=========+========+==========+===========+
-| 12 | 12 | 12 | 12 |
-+---------+--------+----------+-----------+
-| 123 | 123 | 123 | 123 |
-+---------+--------+----------+-----------+
-| 1 | 1 | 1 | 1 |
-+---------+--------+----------+-----------+
-
-Table: Demonstration of simple table syntax.
+.. table:: Demonstration of simple table syntax.
+
+ +---------+--------+----------+-----------+
+ | Right | Left | Center | Default |
+ +=========+========+==========+===========+
+ | 12 | 12 | 12 | 12 |
+ +---------+--------+----------+-----------+
+ | 123 | 123 | 123 | 123 |
+ +---------+--------+----------+-----------+
+ | 1 | 1 | 1 | 1 |
+ +---------+--------+----------+-----------+
Simple table without caption:
@@ -26,33 +26,33 @@ Simple table without caption:
Simple table indented two spaces:
-+---------+--------+----------+-----------+
-| Right | Left | Center | Default |
-+=========+========+==========+===========+
-| 12 | 12 | 12 | 12 |
-+---------+--------+----------+-----------+
-| 123 | 123 | 123 | 123 |
-+---------+--------+----------+-----------+
-| 1 | 1 | 1 | 1 |
-+---------+--------+----------+-----------+
+.. table:: Demonstration of simple table syntax.
-Table: Demonstration of simple table syntax.
+ +---------+--------+----------+-----------+
+ | Right | Left | Center | Default |
+ +=========+========+==========+===========+
+ | 12 | 12 | 12 | 12 |
+ +---------+--------+----------+-----------+
+ | 123 | 123 | 123 | 123 |
+ +---------+--------+----------+-----------+
+ | 1 | 1 | 1 | 1 |
+ +---------+--------+----------+-----------+
Multiline table with caption:
-+-------------+------------+--------------+----------------------------+
-| Centered | Left | Right | Default aligned |
-| Header | Aligned | Aligned | |
-+=============+============+==============+============================+
-| First | row | 12.0 | Example of a row that |
-| | | | spans multiple lines. |
-+-------------+------------+--------------+----------------------------+
-| Second | row | 5.0 | Here’s another one. Note |
-| | | | the blank line between |
-| | | | rows. |
-+-------------+------------+--------------+----------------------------+
-
-Table: Here’s the caption. It may span multiple lines.
+.. table:: Here’s the caption. It may span multiple lines.
+
+ +-------------+------------+--------------+----------------------------+
+ | Centered | Left | Right | Default aligned |
+ | Header | Aligned | Aligned | |
+ +=============+============+==============+============================+
+ | First | row | 12.0 | Example of a row that |
+ | | | | spans multiple lines. |
+ +-------------+------------+--------------+----------------------------+
+ | Second | row | 5.0 | Here’s another one. Note |
+ | | | | the blank line between |
+ | | | | rows. |
+ +-------------+------------+--------------+----------------------------+
Multiline table without caption: