jekyll-bootstrap icon indicating copy to clipboard operation
jekyll-bootstrap copied to clipboard

Nested list does not work

Open cxx7532706 opened this issue 7 years ago • 1 comments

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?

cxx7532706 avatar Jun 11 '17 12:06 cxx7532706

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

xshaun avatar Jun 16 '17 01:06 xshaun