fsnotes
fsnotes copied to clipboard
Ordered list failed
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:
- Make css file with content like above.
- Make ordered list with the different levels.
- See error
Desktop (please complete the following information):
- OS: macOS
- OS version: 10.15.5 (19F72f)
- FSNotes version: 4.2.0 list.pdf
https://github.com/github/cmark-gfm/issues/194