Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjacent block quotes rendering issue #344

Closed
miljan-aleksic opened this issue Aug 21, 2015 · 2 comments
Closed

Adjacent block quotes rendering issue #344

miljan-aleksic opened this issue Aug 21, 2015 · 2 comments
Labels
Milestone

Comments

@miljan-aleksic
Copy link

Hi, this code

Some text

>>> Info 1 text

>>> Info 2 text

Is rendering as:

<blockquote>
<blockquote>
<blockquote>
<p>Info 1 text</p>
<p>Info 2 text</p>
</blockquote>
</blockquote>
</blockquote>

Instead of:

<blockquote>
<blockquote>
<blockquote>
<p>Info 1 text</p>
</blockquote>
</blockquote>
</blockquote>

<blockquote>
<blockquote>
<blockquote>
<p>Info 2 text</p>
</blockquote>
</blockquote>
</blockquote>

It doesn't happen in other parsers and seems buggy behaviour. Let me know if you need more details :)

@cebe
Copy link
Contributor

cebe commented Aug 21, 2015

It doesn't happen in other parsers

that's not really true:

http://johnmacfarlane.net/babelmark2/?normalize=1&text=%3E+%3E+%3E+Info+1+text%0A%0A%3E+%3E+%3E+Info+2+text

@miljan-aleksic
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants