aboutsummaryrefslogtreecommitdiff
path: root/test/command/8216.md
blob: 5aeb2efea2db0e3060e78342812f695adb8b3af4 (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
45
46
47
48
49
50
51
Misaligned separators in grid table
```
% pandoc -f markdown -t html
: Grid Table

+-----------------+:-:+
|Some text        |[text]{.class1 .class2 .class3}|
+-----------------+---+
|Some text        |[text]{.class1 .class2 .class3}|
+-----------------+---+
|Some text        |[text]{.class1 .class2 .class3}|
+-----------------+---+
^D
<table style="width:69%;">
<caption>Grid Table</caption>
<colgroup>
<col style="width: 25%" />
<col style="width: 44%" />
</colgroup>
<tbody>
<tr class="odd">
<td>Some text</td>
<td><span class="class1 class2 class3">text</span></td>
</tr>
<tr class="even">
<td>Some text</td>
<td><span class="class1 class2 class3">text</span></td>
</tr>
<tr class="odd">
<td>Some text</td>
<td><span class="class1 class2 class3">text</span></td>
</tr>
</tbody>
</table>
```

Missing cell

```
% pandoc -f markdown -t gfm
+------+
| text |
+------+---+
| text | 1 |
+------+---+
^D
|      |     |
|------|-----|
| text |     |
| text | 1   |
```