fsnotes icon indicating copy to clipboard operation
fsnotes copied to clipboard

Ordered list failed

Open kiiiiit opened this issue 5 years ago • 1 comments

Describe the bug I'm going to make new style of ordered list like this:

1. test
    1.1. test
    1.2. test
        1.2.1. test

I made simple css file:

ol {
    list-style: none;
    counter-reset: li;
}
ol>li:before {
    counter-increment: li;
    content: counters(li, ".") ". ";
}

In fact I've seen this mixed style list:

1. test
    i. 1.1. test
    ii. 1.2. test
        a. 1.2.1. test

To Reproduce Steps to reproduce the behavior:

  1. Make css file with content like above.
  2. Make ordered list with the different levels.
  3. See error

Desktop (please complete the following information):

  • OS: macOS
  • OS version: 10.15.5 (19F72f)
  • FSNotes version: 4.2.0 list.pdf

kiiiiit avatar May 05 '20 12:05 kiiiiit

https://github.com/github/cmark-gfm/issues/194

glushchenko avatar Oct 18 '22 15:10 glushchenko