带十进制格式的嵌套编号列表

Nested numbered list with decimal formatting

我有一个带编号的子列表的项目符号列表,我无法按照自己的意愿设置格式。

- foo
- bar
   1. some
   1. thing
   1. else
- baz

在 GitHub 上呈现为:

 - foo
 - bar
     i. some
    ii. thing
   iii. else
 - baz

我想要的是:

 - foo
 - bar
     1. some
     2. thing
     3. else
 - baz

以下问题似乎没有帮助https://github.com/github/markup/issues/210

这不是 的重复,因为那是关于如何让编号在更高级别的列表元素中继续。

这不是真正的 Markdown 问题; Markdown 关心的是语义,而不是表示。这是关于生成的 <ol> 的样式。

GitHub 不允许对其呈现的标记进行自定义样式¹,这包括将 list-style-type 设置为 decimal。您受困于他们选择的样式。


¹例如,参见 How to add color to Github's README.md file, Which inline html styles does GitHub markdown accept?, and How to retain HTML formatting in GitHub readme file upon upload?