Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

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 subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants