aboutsummaryrefslogtreecommitdiff
path: root/tests/tables.mediawiki
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-11-28 03:22:33 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-11-28 03:22:33 +0000
commit98ff6b2fd06288598a7acf1f19b84418db47e6db (patch)
treeb2338fb523b95b3bf004f335f135256111e6b4e5 /tests/tables.mediawiki
parent7c6467a115b0b692de35fe5c60142403c00bad76 (diff)
downloadpandoc-98ff6b2fd06288598a7acf1f19b84418db47e6db.tar.gz
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
Diffstat (limited to 'tests/tables.mediawiki')
-rw-r--r--tests/tables.mediawiki24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/tables.mediawiki b/tests/tables.mediawiki
index 989159846..2f505e6aa 100644
--- a/tests/tables.mediawiki
+++ b/tests/tables.mediawiki
@@ -2,10 +2,10 @@ Simple table with caption:
<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>
+<th align="right">Right</th>
+<th align="left">Left</th>
+<th align="center">Center</th>
+<th align="left">Default</th>
</tr><tr>
<td align="right">12</td>
<td align="left">12</td>
@@ -29,10 +29,10 @@ Simple table without caption:
<table>
<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>
+<th align="right">Right</th>
+<th align="left">Left</th>
+<th align="center">Center</th>
+<th align="left">Default</th>
</tr><tr>
<td align="right">12</td>
<td align="left">12</td>
@@ -56,10 +56,10 @@ Simple table indented two spaces:
<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>
+<th align="right">Right</th>
+<th align="left">Left</th>
+<th align="center">Center</th>
+<th align="left">Default</th>
</tr><tr>
<td align="right">12</td>
<td align="left">12</td>