aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions/extra/tables_and_attr_list.html
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2014-01-11 18:18:40 -0800
committerWaylan Limberg <waylan@gmail.com>2014-01-11 18:18:40 -0800
commit73fdecaf2cf00d85b7c933f5b8d186d74a80ff2a (patch)
tree1a7d7861ceb5767f36db01f7715bd723d8fdd12a /tests/extensions/extra/tables_and_attr_list.html
parentd0e088d535a478b9435ff49fd27583f5cb9c2641 (diff)
parent3e63253c8b95f01b803a8c945a8666d4df4cb27a (diff)
downloadmarkdown-73fdecaf2cf00d85b7c933f5b8d186d74a80ff2a.tar.gz
markdown-73fdecaf2cf00d85b7c933f5b8d186d74a80ff2a.tar.bz2
markdown-73fdecaf2cf00d85b7c933f5b8d186d74a80ff2a.zip
Merge pull request #267 from ryneeverett/attr_list-tables
tables and attr_list compatibility
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>