markdown-to-jira icon indicating copy to clipboard operation
markdown-to-jira copied to clipboard

Multi-level lists are not supported

Open whatsupbros opened this issue 4 years ago • 1 comments

This:

- Q
    - z
    - x
    - c
- W
- E

Unfortunaltely is not properly converted to this:

- Q
-- z
-- x
-- c
- W
- E

This result is given instead:

- Q
    - z
    - x
    - c
- W
- E

As well as for deeper levels of lists.

whatsupbros avatar Nov 13 '19 15:11 whatsupbros

Additionally, when using the * character for the list marker, it does some conversion but the number of *s are doubled.

This:

* A
    * 1
        * i
        * ii
    * 2
        * iii
        * iv
* B
    * 3

Should convert to this:

* A
** 1
*** i
*** ii
** 2
*** iii
*** iv
* B
** 3

But instead converts to this:

* A
*** 1
***** i
***** ii
*** 2
***** iii
***** iv
* B
*** 3

SethRAH avatar Oct 09 '20 02:10 SethRAH