pandoc/test/command/1841.md

43 lines
438 B
Markdown
Raw Normal View History

```
% pandoc
<table>
<tr>
<td> *one*</td>
<td> [a link](http://google.com)</td>
</tr>
</table>
^D
<table>
<tr>
<td>
<em>one</em>
</td>
<td>
<a href="http://google.com">a link</a>
</td>
</tr>
</table>
```
```
% pandoc
<table>
<tr>
<td>*one*</td>
<td>[a link](http://google.com)</td>
</tr>
</table>
^D
<table>
<tr>
<td>
<em>one</em>
</td>
<td>
<a href="http://google.com">a link</a>
</td>
</tr>
</table>
```