Skip to content

Commit 3e63253

Browse files
committed
tables_and_attr_list test
1 parent e8638b1 commit 3e63253

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<table>
2+
<thead>
3+
<tr>
4+
<th>First Header</th>
5+
<th>Second Header</th>
6+
</tr>
7+
</thead>
8+
<tbody>
9+
<tr>
10+
<td class="foo bar" title="Some title!">Content Cell</td>
11+
<td>Content Cell</td>
12+
</tr>
13+
<tr>
14+
<td>Content Cell</td>
15+
<td class="foo bar" title="Some title!">Content Cell</td>
16+
</tr>
17+
</tbody>
18+
</table>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
First Header | Second Header
2+
------------------------------------------------------ | -------------
3+
Content Cell{: class="foo bar" title="Some title!" } | Content Cell
4+
Content Cell | Content Cell{: class="foo bar" title="Some title!" }

tests/extensions/extra/test.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ extensions=footnotes
1515

1616
[tables]
1717
extensions=tables
18+
19+
[tables_and_attr_list]
20+
extensions=tables,attr_list

0 commit comments

Comments
 (0)