asciidoctor / asciidoctor-leanpub-converter

A backend for AsciidoctorJ to generate Leanpub-flavoured Markdown
Apache License 2.0
16 stars 9 forks source link

Multi-level lists do not indent correctly #53

Open ysb33r opened 8 years ago

ysb33r commented 8 years ago

There are issues with multi-level lists like

* List #1
* List #2
** List #2 #1
** List #2 #2
* List #3

which should render as

* List #1
* List #2
  * List #2 #1
  * List #2 #2
* List #3

but renders as

* List #1
* List #2
* List #2 #1
* List #2 #2
* List #3

instead. There is a bug open against this at asciidoctor/asciidoctorj#464