aboutsummaryrefslogtreecommitdiffstats
path: root/library/parsedown/test/data/aligned_table.html
diff options
context:
space:
mode:
Diffstat (limited to 'library/parsedown/test/data/aligned_table.html')
-rw-r--r--library/parsedown/test/data/aligned_table.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/library/parsedown/test/data/aligned_table.html b/library/parsedown/test/data/aligned_table.html
new file mode 100644
index 000000000..c4acfcb68
--- /dev/null
+++ b/library/parsedown/test/data/aligned_table.html
@@ -0,0 +1,21 @@
+<table>
+<thead>
+<tr>
+<th style="text-align: left;">header 1</th>
+<th style="text-align: center;">header 2</th>
+<th style="text-align: right;">header 2</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td style="text-align: left;">cell 1.1</td>
+<td style="text-align: center;">cell 1.2</td>
+<td style="text-align: right;">cell 1.3</td>
+</tr>
+<tr>
+<td style="text-align: left;">cell 2.1</td>
+<td style="text-align: center;">cell 2.2</td>
+<td style="text-align: right;">cell 2.3</td>
+</tr>
+</tbody>
+</table> \ No newline at end of file