Skip to content

Commit 9d31807

Browse files
committed
[TASK] Add incomplete tests for MD table
1 parent caa4439 commit 9d31807

File tree

4 files changed

+47
-0
lines changed

4 files changed

+47
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!-- content start -->
2+
<div class="section" id="table-markdown">
3+
<h1>Table Markdown</h1>
4+
5+
<table>
6+
<thead>
7+
<tr>
8+
<th>Name</th>
9+
<th>Age</th>
10+
<th>City</th>
11+
</tr>
12+
</thead>
13+
<tbody>
14+
<tr>
15+
<td>John Doe</td>
16+
<td>29</td>
17+
<td>New York</td>
18+
</tr>
19+
<tr>
20+
<td>Jane Smith</td>
21+
<td>34</td>
22+
<td>San Francisco</td>
23+
</tr>
24+
<tr>
25+
<td>Sam Green</td>
26+
<td>22</td>
27+
<td>Boston</td>
28+
</tr>
29+
</tbody>
30+
</table>
31+
</div>
32+
<!-- content end -->
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<guides xmlns="https://www.phpdoc.org/guides"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="https://www.phpdoc.org/guides packages/guides-cli/resources/schema/guides.xsd"
5+
input-format="md"
6+
>
7+
</guides>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Table Markdown
2+
3+
| Name | Age | City |
4+
|------------|-----|--------------|
5+
| John Doe | 29 | New York |
6+
| Jane Smith | 34 | San Francisco|
7+
| Sam Green | 22 | Boston |
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Tables are currently not supported in Markdown

0 commit comments

Comments
 (0)