Consider this markdown:
> * One (this point is italic)
> * Two
> * Three
This is italic, and because of a lack of termination (#21), everything after is italic
<!-- * but a comment terminates the italic -->
Regular text
It gets highlighted like this:

It is, however, valid markdown:
- One (this point is italic)
- Two
- Three
This should not be italic
Regular text
Compare with the following markdown:
> - One
> - Two
> - Three
some text
that gets highlighted like this:

or this:
* One
* Two
* Three
some text
which gets highlighted like this:
