我有Markdown文件,看起来像这样:
1. First
Some text and other stuff
2. Second
Othe stuff
但是渲染后它生成为:
1. First
Some text and other stuff
1. Second
Othe stuff
是否有解决方案可使第二个有序列表从2开始?
最佳答案
jekyll使用Kramdown作为Markdown解析器,支持设置自定义属性,请参见docs。更改顺序列表的起始编号的html5支持start属性请参见MDN。
markdown文件需要如下所示:
1. First
Some text and other stuff
{:start="2"}
2. Second
Othe stuff
关于markdown - 如何在Jekyll中从1以外的数字开始排序列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48612358/