BenDoan / jabawiki

:notebook: A file base personal wiki
MIT License
2 stars 0 forks source link

third depth in nested lists not rendering at correct depth #23

Closed bvbore closed 9 years ago

bvbore commented 9 years ago
* first
  * sub-item 1
    * sub-sub-item
  * sub-item 2
* second
  * sub-item

renders the same as:

* first
  * sub-item 1
  * sub-sub-item
  * sub-item 2
* second
  * sub-item

and this:

* first
  * sub-item 1
    * sub-sub-item
      * sub-sub-sub-item
  * sub-item 2

renders the same as:

* first
  * sub-item 1
  * sub-sub-item
    * sub-sub-sub-item
  * sub-item 2
BenDoan commented 9 years ago

See my comment on #22. This appears to be a problem with the markdown implementation/spec.

BenDoan commented 9 years ago

Actually this appears to be working correctly. Nested lists require four spaces between each level.

See:

* First
    * Second
    * Second2
        * third
        * third2
            * Fourth