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 does not work #323

Open
cxx7532706 opened this issue Jun 11, 2017 · 1 comment
Open

Nested list does not work #323

cxx7532706 opened this issue Jun 11, 2017 · 1 comment

Comments

@cxx7532706
Copy link

cxx7532706 commented Jun 11, 2017

When I try to use markdown nested list, it doesn't work.
E.g.

* A
  *a
  *b

it shows (it is bullet points, use star to express here)

* A
* a
* b

However, when I check the source code, it looks like normal.

<ul>
<li>A
    <ul>
        <li>a</li>
        <li>b</li>
    </ul>
</li>
</ul>

Does anyone know how to fix this?

@xshaun
Copy link

xshaun commented Jun 16, 2017

There is a blank space between '*' and 'a' 'b' . You can have a try and the following example works well.

* A
    * a
    * b

shows

  • A
    • a
    • b

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