aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions/extra/tables_and_attr_list.html
diff options
context:
space:
mode:
authorryneeverett <ryneeverett@gmail.com>2014-01-11 13:55:18 -0500
committerryneeverett <ryneeverett@gmail.com>2014-01-11 13:55:18 -0500
commit3e63253c8b95f01b803a8c945a8666d4df4cb27a (patch)
tree4b93cf6d4252d928b4c8c85d2b05fbd2561ef19f /tests/extensions/extra/tables_and_attr_list.html
parente8638b168b407c5b46efb58feb1b3c5ae213e458 (diff)
downloadmarkdown-3e63253c8b95f01b803a8c945a8666d4df4cb27a.tar.gz
markdown-3e63253c8b95f01b803a8c945a8666d4df4cb27a.tar.bz2
markdown-3e63253c8b95f01b803a8c945a8666d4df4cb27a.zip
tables_and_attr_list test
Diffstat (limited to 'tests/extensions/extra/tables_and_attr_list.html')
-rw-r--r--tests/extensions/extra/tables_and_attr_list.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/extensions/extra/tables_and_attr_list.html b/tests/extensions/extra/tables_and_attr_list.html
new file mode 100644
index 0000000..7d2451b
--- /dev/null
+++ b/tests/extensions/extra/tables_and_attr_list.html
@@ -0,0 +1,18 @@
+<table>
+<thead>
+<tr>
+<th>First Header</th>
+<th>Second Header</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td class="foo bar" title="Some title!">Content Cell</td>
+<td>Content Cell</td>
+</tr>
+<tr>
+<td>Content Cell</td>
+<td class="foo bar" title="Some title!">Content Cell</td>
+</tr>
+</tbody>
+</table>