summaryrefslogtreecommitdiffstats
path: root/packages/markdown/marked/test/new/list_table.html
blob: 3a8b6388b737445988cae5ac6589bb2e13712d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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>