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

Different result parsedown vs original due to new line #528

Closed
Snoozerworks opened this issue Aug 31, 2017 · 1 comment
Closed

Different result parsedown vs original due to new line #528

Snoozerworks opened this issue Aug 31, 2017 · 1 comment
Milestone

Comments

@Snoozerworks
Copy link

Hi,
Noticed a difference between the original parser and parsedown.

This markdown fail because "## Last heading" is not converted

`## First heading
<ul><li>Hoo
<ul>
<li>Hoo</li>
</ul></li>
</ul>

## Last heading`

However, it works if adding a newline after the nested list like this 
`## First heading
<ul><li>Hoo
<ul>
<li>Hoo</li>
</ul>
</li>
</ul>

## Last heading`

Or removing the newline before the nested list, like this
`## First heading
<ul><li>Hoo<ul>
<li>Hoo</li>
</ul></li>
</ul>

## Last heading`

@aidantwoods
Copy link
Collaborator

aidantwoods commented Mar 27, 2018

This was fixed in #514 :)

screen shot 2018-03-27 at 13 27 39

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

No branches or pull requests

2 participants