pandoc/tests/tables.docbook
fiddlosopher 8bbd11bf21 + Cleaned up runtests.pl. Incorporated table tests in loop with
main writer tests.
+ Renamed tables.tex to tables.latex, tables.db to tables.docbook,
  for consistency with the writer tests.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@661 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-09 02:19:15 +00:00

286 lines
4.5 KiB
Text

<para>
Simple table with caption:
</para>
<table>
<caption>
Demonstration of simple table syntax.
</caption>
<tr>
<th align="right" style="{width: 15%;}">
Right
</th>
<th align="left" style="{width: 8%;}">
Left
</th>
<th align="center" style="{width: 16%;}">
Center
</th>
<th align="left" style="{width: 12%;}">
Default
</th>
</tr>
<tr>
<td align="right">
12
</td>
<td align="left">
12
</td>
<td align="center">
12
</td>
<td align="left">
12
</td>
</tr>
<tr>
<td align="right">
123
</td>
<td align="left">
123
</td>
<td align="center">
123
</td>
<td align="left">
123
</td>
</tr>
<tr>
<td align="right">
1
</td>
<td align="left">
1
</td>
<td align="center">
1
</td>
<td align="left">
1
</td>
</tr>
</table>
<para>
Simple table without caption:
</para>
<informaltable>
<tr>
<th align="right" style="{width: 15%;}">
Right
</th>
<th align="left" style="{width: 8%;}">
Left
</th>
<th align="center" style="{width: 16%;}">
Center
</th>
<th align="left" style="{width: 12%;}">
Default
</th>
</tr>
<tr>
<td align="right">
12
</td>
<td align="left">
12
</td>
<td align="center">
12
</td>
<td align="left">
12
</td>
</tr>
<tr>
<td align="right">
123
</td>
<td align="left">
123
</td>
<td align="center">
123
</td>
<td align="left">
123
</td>
</tr>
<tr>
<td align="right">
1
</td>
<td align="left">
1
</td>
<td align="center">
1
</td>
<td align="left">
1
</td>
</tr>
</informaltable>
<para>
Simple table indented two spaces:
</para>
<table>
<caption>
Demonstration of simple table syntax.
</caption>
<tr>
<th align="right" style="{width: 15%;}">
Right
</th>
<th align="left" style="{width: 8%;}">
Left
</th>
<th align="center" style="{width: 16%;}">
Center
</th>
<th align="left" style="{width: 12%;}">
Default
</th>
</tr>
<tr>
<td align="right">
12
</td>
<td align="left">
12
</td>
<td align="center">
12
</td>
<td align="left">
12
</td>
</tr>
<tr>
<td align="right">
123
</td>
<td align="left">
123
</td>
<td align="center">
123
</td>
<td align="left">
123
</td>
</tr>
<tr>
<td align="right">
1
</td>
<td align="left">
1
</td>
<td align="center">
1
</td>
<td align="left">
1
</td>
</tr>
</table>
<para>
Multiline table with caption:
</para>
<table>
<caption>
Here's the caption. It may span multiple lines.
</caption>
<tr>
<th align="center" style="{width: 15%;}">
Centered Header
</th>
<th align="left" style="{width: 13%;}">
Left Aligned
</th>
<th align="right" style="{width: 16%;}">
Right Aligned
</th>
<th align="left" style="{width: 33%;}">
Default aligned
</th>
</tr>
<tr>
<td align="center">
First
</td>
<td align="left">
row
</td>
<td align="right">
12.0
</td>
<td align="left">
Example of a row that spans multiple lines.
</td>
</tr>
<tr>
<td align="center">
Second
</td>
<td align="left">
row
</td>
<td align="right">
5.0
</td>
<td align="left">
Here's another one. Note the blank line between rows.
</td>
</tr>
</table>
<para>
Multiline table without caption:
</para>
<informaltable>
<tr>
<th align="center" style="{width: 15%;}">
Centered Header
</th>
<th align="left" style="{width: 13%;}">
Left Aligned
</th>
<th align="right" style="{width: 16%;}">
Right Aligned
</th>
<th align="left" style="{width: 33%;}">
Default aligned
</th>
</tr>
<tr>
<td align="center">
First
</td>
<td align="left">
row
</td>
<td align="right">
12.0
</td>
<td align="left">
Example of a row that spans multiple lines.
</td>
</tr>
<tr>
<td align="center">
Second
</td>
<td align="left">
row
</td>
<td align="right">
5.0
</td>
<td align="left">
Here's another one. Note the blank line between rows.
</td>
</tr>
</informaltable>