pandoc/tests/tables.html
John MacFarlane feb70b6e93 Made spacing at end of output more consistent.
Previously some of the writers added spurious whitespace.
This has been removed, resolving Issue #232.

NOTE: If your application combines pandoc's output with other
text, for example in a template, you may need to add spacing.
For example, a pandoc-generated markdown file will not have
a blank line after the final block element.  If you are inserting
it into another markdown file, you will need to make sure there
is a blank line between it and the next block element.
2010-07-20 12:42:12 -07:00

301 lines
No EOL
5.7 KiB
HTML

<p
>Simple table with caption:</p
><table
><caption
>Demonstration of simple table syntax.</caption
><thead
><tr class="header"
><th align="right"
>Right</th
><th align="left"
>Left</th
><th align="center"
>Center</th
><th align="left"
>Default</th
></tr
></thead
><tbody
><tr class="odd"
><td align="right"
>12</td
><td align="left"
>12</td
><td align="center"
>12</td
><td align="left"
>12</td
></tr
><tr class="even"
><td align="right"
>123</td
><td align="left"
>123</td
><td align="center"
>123</td
><td align="left"
>123</td
></tr
><tr class="odd"
><td align="right"
>1</td
><td align="left"
>1</td
><td align="center"
>1</td
><td align="left"
>1</td
></tr
></tbody
></table
><p
>Simple table without caption:</p
><table
><thead
><tr class="header"
><th align="right"
>Right</th
><th align="left"
>Left</th
><th align="center"
>Center</th
><th align="left"
>Default</th
></tr
></thead
><tbody
><tr class="odd"
><td align="right"
>12</td
><td align="left"
>12</td
><td align="center"
>12</td
><td align="left"
>12</td
></tr
><tr class="even"
><td align="right"
>123</td
><td align="left"
>123</td
><td align="center"
>123</td
><td align="left"
>123</td
></tr
><tr class="odd"
><td align="right"
>1</td
><td align="left"
>1</td
><td align="center"
>1</td
><td align="left"
>1</td
></tr
></tbody
></table
><p
>Simple table indented two spaces:</p
><table
><caption
>Demonstration of simple table syntax.</caption
><thead
><tr class="header"
><th align="right"
>Right</th
><th align="left"
>Left</th
><th align="center"
>Center</th
><th align="left"
>Default</th
></tr
></thead
><tbody
><tr class="odd"
><td align="right"
>12</td
><td align="left"
>12</td
><td align="center"
>12</td
><td align="left"
>12</td
></tr
><tr class="even"
><td align="right"
>123</td
><td align="left"
>123</td
><td align="center"
>123</td
><td align="left"
>123</td
></tr
><tr class="odd"
><td align="right"
>1</td
><td align="left"
>1</td
><td align="center"
>1</td
><td align="left"
>1</td
></tr
></tbody
></table
><p
>Multiline table with caption:</p
><table
><caption
>Here's the caption. It may span multiple lines.</caption
><col width="15%"
/><col width="13%"
/><col width="16%"
/><col width="33%"
/><thead
><tr class="header"
><th align="center"
>Centered Header</th
><th align="left"
>Left Aligned</th
><th align="right"
>Right Aligned</th
><th align="left"
>Default aligned</th
></tr
></thead
><tbody
><tr class="odd"
><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 class="even"
><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
></tbody
></table
><p
>Multiline table without caption:</p
><table
><col width="15%"
/><col width="13%"
/><col width="16%"
/><col width="33%"
/><thead
><tr class="header"
><th align="center"
>Centered Header</th
><th align="left"
>Left Aligned</th
><th align="right"
>Right Aligned</th
><th align="left"
>Default aligned</th
></tr
></thead
><tbody
><tr class="odd"
><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 class="even"
><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
></tbody
></table
><p
>Table without column headers:</p
><table
><tbody
><tr class="odd"
><td align="right"
>12</td
><td align="left"
>12</td
><td align="center"
>12</td
><td align="right"
>12</td
></tr
><tr class="even"
><td align="right"
>123</td
><td align="left"
>123</td
><td align="center"
>123</td
><td align="right"
>123</td
></tr
><tr class="odd"
><td align="right"
>1</td
><td align="left"
>1</td
><td align="center"
>1</td
><td align="right"
>1</td
></tr
></tbody
></table
><p
>Multiline table without column headers:</p
><table
><col width="15%"
/><col width="13%"
/><col width="16%"
/><col width="33%"
/><tbody
><tr class="odd"
><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 class="even"
><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
></tbody
></table
>