pandoc/test/command/3432a.md
John MacFarlane 1a23bc65b8 Fixed small bug in RST list parsing.
See #3432.  Previously the parser didn't handle properly this
case:

    * - a
      - b
    * - c
      - d
2017-02-11 20:55:13 +01:00

19 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>
```