-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Fix handling of adjacent lists. #684
Conversation
Would it be possible to merge this in? it does fix #530 |
I would like to get this PR merged @kohler would you be able to merge the current master so the tests will run? Or would you like me to do it in a new PR? |
I updated. I didn't check in the minified file though—not sure what you prefer there (or what Travis expects). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like travis is failing because of linting
/home/travis/build/markedjs/marked/lib/marked.js
360:42 error Expected '===' and instead saw '==' eqeqeq
361:1 warning Expected indentation of 12 spaces but found 14 indent
Travis will update the minified file automatically when this PR is merged |
58c8e75
to
5746f36
Compare
An ordered list followed by an unordered list shouldn't be combined, even in non-smartLists mode. Should fix markedjs#530.
58c8e75
to
a48a9f0
Compare
Travis no longer complains and I changed the tests as requested. |
Nice 🎉. We will just need one more approval from the markedjs team. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wonderful, thanks for fixing these pesky lists! 🎉
An ordered list followed by an unordered list shouldn't be combined, even in non-smartLists mode.
Should fix #530.