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