Fixed misleading example in README.
This commit is contained in:
parent
9857aa866a
commit
c90764196a
1 changed files with 8 additions and 8 deletions
16
README
16
README
|
@ -2386,19 +2386,19 @@ by default, pandoc interprets material between HTML block tags as markdown.
|
|||
Thus, for example, Pandoc will turn
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>*one*</td>
|
||||
<td>[a link](http://google.com)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>*one*</td>
|
||||
<td>[a link](http://google.com)</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
into
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><em>one</em></td>
|
||||
<td><a href="http://google.com">a link</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><em>one</em></td>
|
||||
<td><a href="http://google.com">a link</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
whereas `Markdown.pl` will preserve it as is.
|
||||
|
|
Loading…
Add table
Reference in a new issue