JetBrains / markdown

Markdown parser written in kotlin
Apache License 2.0
706 stars 78 forks source link

Nested blockquotes cannot end early. #126

Open coderforlife opened 1 year ago

coderforlife commented 1 year ago

This example fails:

> Line 1
> > Line 2
> Line 3
> Line 4

The Line 3 and 4 are grouped into the nested blockquote, not the outer blockquote. This should generate a BLOCKQUOTE with a PARAGRAPH, a BLOCKQUOTE (with a PARAGRAPH containing just Line 2), and a second PARAGRAPH. But instead the BLOCKQUOTE is generated as a PARAGRAPH and a BLOCKQUOTE with a PARAGRAPH containing Lines 2-4.