pandoc/test/tables.tei
2017-02-04 12:56:30 +01:00

171 lines
3.9 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>Simple table with caption:</p>
<table>
<row role="label">
<cell><p>Right</p></cell>
<cell><p>Left</p></cell>
<cell><p>Center</p></cell>
<cell><p>Default</p></cell>
</row>
<row>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
</row>
<row>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
</row>
<row>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
</row>
</table>
<p>Simple table without caption:</p>
<table>
<row role="label">
<cell><p>Right</p></cell>
<cell><p>Left</p></cell>
<cell><p>Center</p></cell>
<cell><p>Default</p></cell>
</row>
<row>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
</row>
<row>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
</row>
<row>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
</row>
</table>
<p>Simple table indented two spaces:</p>
<table>
<row role="label">
<cell><p>Right</p></cell>
<cell><p>Left</p></cell>
<cell><p>Center</p></cell>
<cell><p>Default</p></cell>
</row>
<row>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
</row>
<row>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
</row>
<row>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
</row>
</table>
<p>Multiline table with caption:</p>
<table>
<row role="label">
<cell><p>Centered Header</p></cell>
<cell><p>Left Aligned</p></cell>
<cell><p>Right Aligned</p></cell>
<cell><p>Default aligned</p></cell>
</row>
<row>
<cell><p>First</p></cell>
<cell><p>row</p></cell>
<cell><p>12.0</p></cell>
<cell><p>Example of a row that spans multiple lines.</p></cell>
</row>
<row>
<cell><p>Second</p></cell>
<cell><p>row</p></cell>
<cell><p>5.0</p></cell>
<cell><p>Heres another one. Note the blank line between rows.</p></cell>
</row>
</table>
<p>Multiline table without caption:</p>
<table>
<row role="label">
<cell><p>Centered Header</p></cell>
<cell><p>Left Aligned</p></cell>
<cell><p>Right Aligned</p></cell>
<cell><p>Default aligned</p></cell>
</row>
<row>
<cell><p>First</p></cell>
<cell><p>row</p></cell>
<cell><p>12.0</p></cell>
<cell><p>Example of a row that spans multiple lines.</p></cell>
</row>
<row>
<cell><p>Second</p></cell>
<cell><p>row</p></cell>
<cell><p>5.0</p></cell>
<cell><p>Heres another one. Note the blank line between rows.</p></cell>
</row>
</table>
<p>Table without column headers:</p>
<table>
<row role="label">
<cell></cell>
<cell></cell>
<cell></cell>
<cell></cell>
</row>
<row>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
<cell><p>12</p></cell>
</row>
<row>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
<cell><p>123</p></cell>
</row>
<row>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
<cell><p>1</p></cell>
</row>
</table>
<p>Multiline table without column headers:</p>
<table>
<row role="label">
<cell></cell>
<cell></cell>
<cell></cell>
<cell></cell>
</row>
<row>
<cell><p>First</p></cell>
<cell><p>row</p></cell>
<cell><p>12.0</p></cell>
<cell><p>Example of a row that spans multiple lines.</p></cell>
</row>
<row>
<cell><p>Second</p></cell>
<cell><p>row</p></cell>
<cell><p>5.0</p></cell>
<cell><p>Heres another one. Note the blank line between rows.</p></cell>
</row>
</table>