pandoc/tests/tables.html
fiddlosopher 98ff6b2fd0 Better looking simple tables. Resolves Issue #180.
* Markdown reader: simple tables are now given column widths of 0.

* Column width of 0 is interpreted as meaning: use default column width.

* Writers now include explicit column width information only
  for multiline tables.  (Exception:  RTF writer, which requires
  column widths.  In this case, columns are given equal widths,
  adding up to the text width.)

* Simple tables should now look better in most output formats.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@1631 788f1e2b-df1e-0410-8736-df70ead52e1b
2009-11-28 03:22:33 +00:00

207 lines
3.9 KiB
HTML

<p
>Simple table with caption:</p
><table
><caption
>Demonstration of simple table syntax.</caption
><tr class="header"
><th align="right"
>Right</th
><th align="left"
>Left</th
><th align="center"
>Center</th
><th align="left"
>Default</th
></tr
><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
></table
><p
>Simple table without caption:</p
><table
><tr class="header"
><th align="right"
>Right</th
><th align="left"
>Left</th
><th align="center"
>Center</th
><th align="left"
>Default</th
></tr
><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
></table
><p
>Simple table indented two spaces:</p
><table
><caption
>Demonstration of simple table syntax.</caption
><tr class="header"
><th align="right"
>Right</th
><th align="left"
>Left</th
><th align="center"
>Center</th
><th align="left"
>Default</th
></tr
><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
></table
><p
>Multiline table with caption:</p
><table
><caption
>Here's the caption. It may span multiple lines.</caption
><tr class="header"
><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 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
></table
><p
>Multiline table without caption:</p
><table
><tr class="header"
><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 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
></table
>