aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/extensions/extra/tables_and_attr_list.html18
-rw-r--r--tests/extensions/extra/tables_and_attr_list.txt4
-rw-r--r--tests/extensions/extra/test.cfg3
3 files changed, 25 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>
diff --git a/tests/extensions/extra/tables_and_attr_list.txt b/tests/extensions/extra/tables_and_attr_list.txt
new file mode 100644
index 0000000..517eeeb
--- /dev/null
+++ b/tests/extensions/extra/tables_and_attr_list.txt
@@ -0,0 +1,4 @@
+First Header | Second Header
+------------------------------------------------------ | -------------
+Content Cell{: class="foo bar" title="Some title!" } | Content Cell
+Content Cell | Content Cell{: class="foo bar" title="Some title!" }
diff --git a/tests/extensions/extra/test.cfg b/tests/extensions/extra/test.cfg
index 74893f0..52d48f0 100644
--- a/tests/extensions/extra/test.cfg
+++ b/tests/extensions/extra/test.cfg
@@ -15,3 +15,6 @@ extensions=footnotes
[tables]
extensions=tables
+
+[tables_and_attr_list]
+extensions=tables,attr_list