mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 13:45:49 +00:00
See #3432. Previously the parser didn't handle properly this case: * - a - b * - c - d
20 lines
147 B
Markdown
20 lines
147 B
Markdown
```
|
|
% pandoc -f rst
|
|
* - a
|
|
- b
|
|
* - c
|
|
- d
|
|
^D
|
|
<ul>
|
|
<li><ul>
|
|
<li>a</li>
|
|
<li>b</li>
|
|
</ul></li>
|
|
<li><ul>
|
|
<li>c</li>
|
|
<li>d</li>
|
|
</ul></li>
|
|
</ul>
|
|
```
|
|
|