Create two lists

Hello,

how can i create two lists with markdown?

like this:

<ul>
 <li>item00</li>
 <li>item01</li>
 <li>item02</li>
</ul>

<ul>
 <li>item03</li>
 <li>item04</li>
 <li>item05</li>
</ul>

input


* item00
* item01
* item02

* item03
* item04
* item05

wrong output

<ul>
 <li>item00</li>
 <li>item01</li>
 <li><p>item02</p></li>
 <li>item03</li>
 <li>item04</li>
 <li>item05</li>
</ul>

greetings perry

You could probably use a non-breaking space; somehow several lists without a headline or a paragraph before don’t seem to make that much sense to me, though.

An HTML comment in between should also work (at least it does in the Markdown parser at StackExchange)

- list
- one

<!--  -->

- list
- two

------Danke tobiasweh