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

Nested list not displaying correctly #35

Closed
nombrekeff opened this issue Mar 7, 2017 · 2 comments
Closed

Nested list not displaying correctly #35

nombrekeff opened this issue Mar 7, 2017 · 2 comments

Comments

@nombrekeff
Copy link

Nested md list not nesting html correctly

* Parent li
  * Child li

This example should become:

<li>
  Parent li
  <ul>
    <li>Child li</li>
  </ul>
</li>

But instead it becomes

<ul>
  <li>
    Parent li
  </li>
<ul>
<ul>
  <li>Child li</li>
</ul>
@dimpu
Copy link
Owner

dimpu commented Mar 8, 2017

It's a bug with marked library. We don't have any fix for this yet.

@dimpu dimpu closed this as completed Mar 8, 2017
@nombrekeff
Copy link
Author

Okey thanks i will check in some time to see if its fixed

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