Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
UziTech committed Mar 11, 2019
1 parent ae9484d commit afa14d6
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
44 changes: 44 additions & 0 deletions test/new/list_table.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<ul>
<li>
<p>Table in list:</p>
<table>
<thead>
<tr>
<th>column1</th>
<th>column2</th>
</tr>
</thead>
<tbody>
<tr>
<td>value1</td>
<td>value2</td>
</tr>
<tr>
<td>value3</td>
<td>value4</td>
</tr>
</tbody>
</table>
</li>
<li>
<p>No leading pipe table in list:</p>
<table>
<thead>
<tr>
<th>column1</th>
<th>column2</th>
</tr>
</thead>
<tbody>
<tr>
<td>value1</td>
<td>value2</td>
</tr>
<tr>
<td>value3</td>
<td>value4</td>
</tr>
</tbody>
</table>
</li>
</ul>
13 changes: 13 additions & 0 deletions test/new/list_table.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
* Table in list:

| column1 | column2 |
|---------|---------|
| value1 | value2 |
| value3 | value4 |

* No leading pipe table in list:

column1 | column2
--------|--------
value1 | value2
value3 | value4

0 comments on commit afa14d6

Please sign in to comment.