plusjade / jekyll-bootstrap

The quickest way to start and publish your Jekyll powered blog. 100% compatible with GitHub pages.
jekyllbootstrap.com
MIT License
3.35k stars 1.71k forks source link

Nested list does not work #323

Open cxx7532706 opened 7 years ago

cxx7532706 commented 7 years ago

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 commented 7 years ago

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

* A
    * a
    * b

shows