'How to start ordered list from number other then 1 in Jekyll?
I have Markdown file that look like this:
1. First
Some text and other stuff
2. Second
Othe stuff
But after render it's generated as:
1. First
Some text and other stuff
1. Second
Othe stuff
Is there a solution to make second ordered list start from 2?
Solution 1:[1]
Another way in this case is to simply indent the Some text and other stuff paragraph with 4 spaces. Then 2. Second will know to continue the numbering.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | xji |
