5d71e37f26
Including when they're in tables or other list items. Closes #2606.
58 lines
521 B
Markdown
58 lines
521 B
Markdown
```
|
||
% 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>
|
||
```
|
||
|