add table test

This commit is contained in:
Egor Kovetskiy 2021-09-09 13:12:58 +03:00
parent 4e47ae14a7
commit 3fcfcde298
2 changed files with 18 additions and 0 deletions

15
pkg/mark/testdata/table.html vendored Normal file
View File

@ -0,0 +1,15 @@
<table>
<thead>
<tr>
<th>HEADER1</th>
<th>HEADER2</th>
</tr>
</thead>
<tbody>
<tr>
<td>row1</td>
<td>row2</td>
</tr>
</tbody>
</table>

3
pkg/mark/testdata/table.md vendored Normal file
View File

@ -0,0 +1,3 @@
|HEADER1|HEADER2|
|---|---|
|row1|row2|