pandoc/test/command/2606.md
John MacFarlane 5d71e37f26 MediaWiki reader: ensure that list starts begin at left margin.
Including when they're in tables or other list items.

Closes #2606.
2017-02-21 23:41:32 +01:00

58 lines
521 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```
% pandoc -f mediawiki -t html5
{|
| * hello
|}
^D
<table>
<tbody>
<tr class="odd">
<td><p>* hello</p></td>
</tr>
</tbody>
</table>
```
```
% pandoc -f mediawiki -t html5
{|
|
* hello
|}
^D
<table>
<tbody>
<tr class="odd">
<td><ul>
<li>hello</li>
</ul></td>
</tr>
</tbody>
</table>
```
```
% pandoc -f mediawiki -t html5
{|
|
* hello
|}
^D
<table>
<tbody>
<tr class="odd">
<td><p><code>* hello</code></p></td>
</tr>
</tbody>
</table>
```
```
% pandoc -f mediawiki -t html5
* * hi
^D
<ul>
<li>* hi</li>
</ul>
```