mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-29 01:41:20 +08:00
b7d2c4815f
It should not accept escaped newlines. See #10672.
27 lines
382 B
Markdown
27 lines
382 B
Markdown
```
|
|
% pandoc
|
|
| This | Is |
|
|
|:-----|:---|
|
|
| With \
|
|
| Cells
|
|
^D
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align: left;">This</th>
|
|
<th style="text-align: left;">Is</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td style="text-align: left;">With \</td>
|
|
<td style="text-align: left;"></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="text-align: left;">Cells</td>
|
|
<td style="text-align: left;"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
```
|